diff options
Diffstat (limited to 'Lib/lib2to3/tests/test_all_fixers.py')
-rw-r--r-- | Lib/lib2to3/tests/test_all_fixers.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Lib/lib2to3/tests/test_all_fixers.py b/Lib/lib2to3/tests/test_all_fixers.py index c0507cf..f64b3d9 100644 --- a/Lib/lib2to3/tests/test_all_fixers.py +++ b/Lib/lib2to3/tests/test_all_fixers.py @@ -7,13 +7,12 @@ running time. # Python imports import unittest -import test.support # Local imports +from lib2to3 import refactor from . import support -@test.support.requires_resource('cpu') class Test_all(support.TestCase): def setUp(self): @@ -22,6 +21,3 @@ class Test_all(support.TestCase): def test_all_project_files(self): for filepath in support.all_project_files(): self.refactor.refactor_file(filepath) - -if __name__ == '__main__': - unittest.main() |