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

collin.winter python-checkins at python.org
Mon Sep 3 08:15:41 CEST 2007


Author: collin.winter
Date: Mon Sep  3 08:15:26 2007
New Revision: 57921

Modified:
   sandbox/trunk/2to3/tests/test_all_fixers.py
Log:
Make sure the explicit fixers are run by test_all_fixers, too.

Modified: sandbox/trunk/2to3/tests/test_all_fixers.py
==============================================================================
--- sandbox/trunk/2to3/tests/test_all_fixers.py	(original)
+++ sandbox/trunk/2to3/tests/test_all_fixers.py	Mon Sep  3 08:15:26 2007
@@ -28,7 +28,7 @@
 
 class Test_all(support.TestCase):
     def setUp(self):
-        options = Options(fix=["all"], write=False)
+        options = Options(fix=["all", "idioms", "ws_comma"], write=False)
         self.refactor = refactor.RefactoringTool(options)
 
     def test_all_project_files(self):


More information about the Python-checkins mailing list