Skip to content

Commit

Permalink
test: set encodePassword test count to normal. Not 100x normal.
Browse files Browse the repository at this point in the history
[skip travis] hypothesis testing not done on python 2.
  • Loading branch information
rouilj committed Mar 26, 2024
1 parent 472c180 commit d49b2a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_hypothesis.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def test_h64encode_h64decode(self, s):
"SHA", "MD5", "crypt", "plaintext",
"zot")))
@example("asd\x00df", "crypt")
@settings(max_examples=100 * _max_examples)
@settings(max_examples=_max_examples)
def test_encodePassword(self, password, scheme):

if scheme == "crypt" and password and "\x00" in password:
Expand Down

0 comments on commit d49b2a0

Please sign in to comment.