From: Andrew M. Kuchling Date: Wed, 14 Feb 2001 17:46:20 +0000 (+0000) Subject: Patch #103748 from Toby Dickenson: fix typo in test_zlib that turns one X-Git-Tag: v2.1b1~368 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e6d44eedc26cf9869d5a41e743ddf6b4df1aa55;p=python 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' --- diff --git a/Lib/test/test_zlib.py b/Lib/test/test_zlib.py index c672ef7c66..70da76d6c2 100644 --- a/Lib/test/test_zlib.py +++ b/Lib/test/test_zlib.py @@ -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: