Commit bfe6b402 authored by Antoine Pitrou's avatar Antoine Pitrou

Fix failure introduced in r80929.

parent c862b20e
...@@ -101,7 +101,7 @@ class BaseCompressTestCase(object): ...@@ -101,7 +101,7 @@ class BaseCompressTestCase(object):
# Generate 10MB worth of random, and expand it by repeating it. # Generate 10MB worth of random, and expand it by repeating it.
# The assumption is that zlib's memory is not big enough to exploit # The assumption is that zlib's memory is not big enough to exploit
# such spread out redundancy. # such spread out redundancy.
data = b''.join([random.getrandbits(8 * _1M).to_bytes(_1M, 'little') data = b''.join([binascii.a2b_hex(fmt % random.getrandbits(8 * _1M))
for i in range(10)]) for i in range(10)])
data = data * (size // len(data) + 1) data = data * (size // len(data) + 1)
try: try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment