From dfba6ec2f21adf3aa739218cf870eaaaa5df6e9c Mon Sep 17 00:00:00 2001 From: sean-nicholas Date: Thu, 30 Jan 2020 17:43:24 +0100 Subject: [PATCH] fix(test): typo in password (#1797) --- packages/authentication-local/test/strategy.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/authentication-local/test/strategy.test.ts b/packages/authentication-local/test/strategy.test.ts index 3207b1de70..181e1cbae0 100644 --- a/packages/authentication-local/test/strategy.test.ts +++ b/packages/authentication-local/test/strategy.test.ts @@ -151,7 +151,7 @@ describe('@feathersjs/authentication-local/strategy', () => { assert.ok(accessToken); assert.strictEqual(authResult.user.email, email); - assert.strictEqual(authResult.user.passsword, undefined); + assert.strictEqual(authResult.user.password, undefined); assert.ok(authResult.user.fromGet); const decoded = await authService.verifyAccessToken(accessToken);