Skip to content

Commit

Permalink
gh-109418: Fix hypothesis strategy for b2a_roundtrip test (#109419)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Sep 14, 2023
1 parent 3b9d10b commit d7dc3d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_binascii.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def test_uu(self):
binascii.b2a_uu(b"", True)

@hypothesis.given(
binary=hypothesis.strategies.binary(),
binary=hypothesis.strategies.binary(max_size=45),
backtick=hypothesis.strategies.booleans(),
)
def test_b2a_roundtrip(self, binary, backtick):
Expand Down

0 comments on commit d7dc3d9

Please sign in to comment.