From 91a4883b50f2207e2c79051df4e9940d6fb743d4 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 21 Aug 2023 19:43:53 +0530 Subject: [PATCH] typo --- src/test/users-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); });