Skip to content

Commit

Permalink
Update test_alphanumeric.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 14, 2024
1 parent af713b4 commit 93d9495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kyu_5/not_very_secure/test_alphanumeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class AlphanumericTestCase(unittest.TestCase):
"""Testing alphanumeric function."""

@parameterized.expand([
("hello world_", False),
("hello _world", False),
("PassW0rd", True),
(" ", False)])
def test_alphanumeric(self, password, expected):
Expand Down

0 comments on commit 93d9495

Please sign in to comment.