Skip to content

Commit a288698

Browse files
authored
disambiguate password validator requirement (#197)
1 parent 22d3cf7 commit a288698

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-3/revise/implement/password-validator.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To be valid, a password must:
99
- Have at least one English uppercase letter (A-Z)
1010
- Have at least one English lowercase letter (a-z)
1111
- Have at least one number (0-9)
12-
- Have at least one non-alphanumeric symbol ("!", "#", "$", "%", ".", "*", "&")
12+
- Have at least one of the following non-alphanumeric symbols: ("!", "#", "$", "%", ".", "*", "&")
1313
- Must not be any previous password in the passwords array.
1414
1515
You must breakdown this problem in order to solve it. Find one test case first and get that working

0 commit comments

Comments
 (0)