diff --git a/test/authentication.js b/test/authentication.js index 8cc9bf2af1..6a1d255bac 100644 --- a/test/authentication.js +++ b/test/authentication.js @@ -193,7 +193,7 @@ describe('authentication', function () { }, function (err, res, body) { assert.ifError(err); assert.equal(res.statusCode, 401); - assert.equal(body, 'not-authorized'); + assert.strictEqual(body.status.code, 'not-authorised'); done(); }); });