From 812a3a116206e1b567379433605af42c664753a8 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Wed, 26 Jan 2011 23:31:25 +0000 Subject: Merged revisions 88204 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88204 | antoine.pitrou | 2011-01-27 00:29:28 +0100 (jeu., 27 janv. 2011) | 4 lines Issue #11018: fix a test to not be a no-op in test_bz2. Found by Nadeem Vawda, reviewed by Brett. ........ --- Lib/test/test_bz2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_bz2.py b/Lib/test/test_bz2.py index 4cb6bf1..d9ccf0a 100644 --- a/Lib/test/test_bz2.py +++ b/Lib/test/test_bz2.py @@ -85,7 +85,7 @@ class BZ2FileTest(BaseTest): if not str: break text += str - self.assertEqual(text, text) + self.assertEqual(text, self.TEXT) def testRead100(self): # "Test BZ2File.read(100)" -- cgit v0.12