Skip to content

Commit

Permalink
fix(writeapi): tests
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlam committed Oct 8, 2020
1 parent cfee431 commit 41f55b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/authentication.js
Expand Up @@ -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();
});
});
Expand Down

0 comments on commit 41f55b7

Please sign in to comment.