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.
........
This commit is contained in:
Antoine Pitrou 2011-01-26 23:31:25 +00:00
parent 32074e337e
commit 812a3a1162
1 changed files with 1 additions and 1 deletions

View File

@ -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)"