Commit 8e6d44ee authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Patch #103748 from Toby Dickenson: fix typo in test_zlib that turns one

    test case into a no-op because ''.join('hello world') == 'hello world'
parent ed24cd2c
......@@ -69,7 +69,7 @@ bufs = []
for i in range(0, len(combuf), 128):
bufs.append(deco.decompress(combuf[i:i+128]))
bufs.append(deco.flush())
decomp2 = ''.join(buf)
decomp2 = ''.join(bufs)
if decomp2 != buf:
print "decompressobj with init options failed"
else:
......
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