mirror of
https://github.com/python/cpython.git
synced 2025-09-04 16:01:10 +00:00
gh-109418: Fix hypothesis strategy for b2a_roundtrip test (#109419)
This commit is contained in:
parent
3b9d10b031
commit
d7dc3d9455
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ class BinASCIITest(unittest.TestCase):
|
|||
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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue