Skip to content

Commit

Permalink
fix(BUG): fixed BUG056
Browse files Browse the repository at this point in the history
  • Loading branch information
TellToldTold committed Dec 13, 2023
1 parent 6482705 commit 7bb4bbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/BUG/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def is_valid_password(password: str) -> bool:
"""
BUG056: is_valid_password should return True if the password length is greater than 8, not if it's not.
"""
result = len(password) < 8
result = len(password) > 8
return result


Expand Down

0 comments on commit 7bb4bbe

Please sign in to comment.