diff --git a/src/test/users-test.js b/src/test/users-test.js index 7d198ff2f..b81613468 100644 --- a/src/test/users-test.js +++ b/src/test/users-test.js @@ -468,12 +468,12 @@ describe('User', function () { describe('sendPasswordResetByIdentifier', function () { before(createOwner); - it('fails due to unkown email', async function () { + it('fails due to unknown email', async function () { const [error] = await safe(users.sendPasswordResetByIdentifier('unknown@mail.com', auditSource)); expect(error.reason).to.eql(BoxError.NOT_FOUND); }); - it('fails due to unkown username', async function () { + it('fails due to unknown username', async function () { const [error] = await safe(users.sendPasswordResetByIdentifier('unknown', auditSource)); expect(error.reason).to.eql(BoxError.NOT_FOUND); });