Skip to content

Commit

Permalink
Update test_decrypt_password.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rorywhite200 authored Feb 3, 2024
1 parent 19e2aa9 commit 42809f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_decrypt_password.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def test_decrypt_password_type_error():
"""
Test if the function returns a TypeError if the type of the input is not correct.
"""
with pytest.raises(TypeError, match="string expected for argument encrypted_password"):
with pytest.raises(TypeError, match="string expected for encrypted password"):
decrypt_password(123)

with pytest.raises(TypeError, match="integer expected as random_seed"):
Expand Down

0 comments on commit 42809f1

Please sign in to comment.