From: Sergey Matveev Date: Sat, 30 Nov 2024 16:09:10 +0000 (+0300) Subject: Reduce junk volume X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=384030fe7b36b100e8bca8e7be10ce2018b9b2868553769646cea61fe3451668;p=keks.git Reduce junk volume Just to reduce testing time. Anyway even several bytes of added data is enough for testing purposes. --- diff --git a/pyac/tests/strategies.py b/pyac/tests/strategies.py index 72fa859..2f0aa64 100644 --- a/pyac/tests/strategies.py +++ b/pyac/tests/strategies.py @@ -13,7 +13,7 @@ from hypothesis.strategies import uuids from pyac import Blob -junk_st = binary(max_size=20) +junk_st = binary(max_size=8) blobs_st = tuples(integers(1, 20), binary(max_size=60)).map(lambda x: Blob(*x)) unicode_allowed = characters(exclude_characters="\x00", exclude_categories=("Cs",)) text_st = text(alphabet=unicode_allowed, max_size=32)