Commit 6c3f0179 authored by Antoine Pitrou's avatar Antoine Pitrou

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.
........
parent ab5dd009
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment