[Python-checkins] r61899 - sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.py

collin.winter python-checkins at python.org
Tue Mar 25 17:53:41 CET 2008


Author: collin.winter
Date: Tue Mar 25 17:53:41 2008
New Revision: 61899

Modified:
   sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.py
Log:
Add a missing explicit fixer to test_all_fixers.

Modified: sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.py	(original)
+++ sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.py	Tue Mar 25 17:53:41 2008
@@ -27,7 +27,7 @@
 
 class Test_all(support.TestCase):
     def setUp(self):
-        options = Options(fix=["all", "idioms", "ws_comma"],
+        options = Options(fix=["all", "idioms", "ws_comma", "buffer"],
                           print_function=False)
         self.refactor = refactor.RefactoringTool(options)
 


More information about the Python-checkins mailing list