projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ab5dd00
)
Merged revisions 88204 via svnmerge from
author
Antoine Pitrou
<solipsis@pitrou.net>
Wed, 26 Jan 2011 23:31:20 +0000
(23:31 +0000)
committer
Antoine Pitrou
<solipsis@pitrou.net>
Wed, 26 Jan 2011 23:31:20 +0000
(23:31 +0000)
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
patch
|
blob
|
history
diff --git
a/Lib/test/test_bz2.py
b/Lib/test/test_bz2.py
index bfcb02a5358bc600a51ca360a02067eb3c5141d2..fbf8fff47c10ba55ff33d01dac5f8d037cd34df5 100644
(file)
--- a/
Lib/test/test_bz2.py
+++ b/
Lib/test/test_bz2.py
@@
-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):