Skip to content

Commit

Permalink
fix(test): typo in password (#1797)
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-nicholas committed Jan 30, 2020
1 parent 05b6965 commit dfba6ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/authentication-local/test/strategy.test.ts
Expand Up @@ -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);
Expand Down

0 comments on commit dfba6ec

Please sign in to comment.