Skip to content

Commit df9863b

Browse files
committed
fix the code
1 parent 444fbb9 commit df9863b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-3/3-stretch/password-validator.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ test("password has at least one symbol: (!, #, $, %, ., *, &)", () => {
6464
// password must not be any previous password in the passwords array.
6565
test("password must not be any previous password in the passwords array.", () => {
6666

67-
const password = "Aq@1122#";
67+
const password = "abcde1!";
6868
const result = isValidPassword(password);
6969
expect(result).toEqual(false);
7070
}

0 commit comments

Comments
 (0)