From a032e12b7ee1de6a242518d2537b88834ac93b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Sat, 16 May 2020 00:25:44 -0400 Subject: [PATCH] fix: tests --- test/controllers-admin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/controllers-admin.js b/test/controllers-admin.js index 371685866f..d38f2884c3 100644 --- a/test/controllers-admin.js +++ b/test/controllers-admin.js @@ -395,7 +395,7 @@ describe('Admin Controllers', function () { request(nconf.get('url') + '/api/admin/advanced/errors/export', { jar: jar }, function (err, res, body) { assert.ifError(err); assert.equal(res.statusCode, 200); - assert(body); + assert.strictEqual(body, ''); done(); }); });