From f6d5da73e83125e4a9736af10c759bdbc38b35f2 Mon Sep 17 00:00:00 2001 From: cvmcosta Date: Mon, 10 May 2021 09:51:05 -0300 Subject: [PATCH] fixing tests --- test/5-dynamicregistration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/5-dynamicregistration.js b/test/5-dynamicregistration.js index a17213c..4f2fd12 100644 --- a/test/5-dynamicregistration.js +++ b/test/5-dynamicregistration.js @@ -52,7 +52,7 @@ describe('Testing Dynamic registration Service', function () { return chai.request(lti.app).get(url).query(dynamicRegistrationRequest).then(async res => { expect(res).to.have.status(200) const response = res.text - expect(response).to.equal(``) + expect(response).to.equal('') const platform = await lti.getPlatform('http://localhost/moodledyn', '123456') expect(platform).to.be.instanceOf(Platform) await expect(platform.platformActive()).to.eventually.equal(false)