From 8e6d44eedc26cf9869d5a41e743ddf6b4df1aa55 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Wed, 14 Feb 2001 17:46:20 +0000 Subject: [PATCH] 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' --- Lib/test/test_zlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.50.1