Skip to content

Commit

Permalink
fix: change disallowedPasswords assertions to be false in auth.js test (
Browse files Browse the repository at this point in the history
  • Loading branch information
rjperkins authored Sep 16, 2020
1 parent 3b53f1d commit fafa95d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/utils/__tests__/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('isPasswordAllowed only allows some passwords', () => {

disallowedPasswords.forEach(password => {
test(`disallows ${password}`, () => {
expect(isPasswordAllowed(password)).toBe(true)
expect(isPasswordAllowed(password)).toBe(false)
})
})
})
Expand Down

0 comments on commit fafa95d

Please sign in to comment.