diff --git a/server/src/utils/__tests__/auth.js b/server/src/utils/__tests__/auth.js index f56104cb..a5736257 100644 --- a/server/src/utils/__tests__/auth.js +++ b/server/src/utils/__tests__/auth.js @@ -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) }) }) })