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:20 +00:00
parent ab5dd00927
commit 6c3f01791b
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class BZ2FileTest(BaseTest):
if not str:
break
text += str
self.assertEqual(text, text)
self.assertEqual(text, self.TEXT)
bz2f.close()
def testRead100(self):