[Python-checkins] r73192 - sandbox/trunk/2to3/lib2to3/tests/test_fixers.py

benjamin.peterson python-checkins at python.org
Thu Jun 4 02:16:31 CEST 2009


Author: benjamin.peterson
Date: Thu Jun  4 02:16:30 2009
New Revision: 73192

Log:
actually test something here

Thanks to Joe Amenta for noticing.y


Modified:
   sandbox/trunk/2to3/lib2to3/tests/test_fixers.py

Modified: sandbox/trunk/2to3/lib2to3/tests/test_fixers.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/tests/test_fixers.py	(original)
+++ sandbox/trunk/2to3/lib2to3/tests/test_fixers.py	Thu Jun  4 02:16:30 2009
@@ -415,6 +415,7 @@
     def test_5(self):
         b = """print; print whatever;"""
         a = """print(); print(whatever);"""
+        self.check(b, a)
 
     def test_tuple(self):
         b = """print (a, b, c)"""


More information about the Python-checkins mailing list