diff options
author | Barry Warsaw <barry@python.org> | 2011-10-07 19:16:20 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2011-10-07 19:16:20 (GMT) |
commit | de8c723ddd7306493f0322c728e8abad996fde3f (patch) | |
tree | 934ab73c732c0f4da6ea7653e21b357694f5df45 /Lib/test | |
parent | 7010a07bd0dab29e5e360f2bbd862ed23ba3f288 (diff) | |
parent | c6cfd4aa8826b75d972f33f7c625bbe79c493d5f (diff) | |
download | cpython-de8c723ddd7306493f0322c728e8abad996fde3f.zip cpython-de8c723ddd7306493f0322c728e8abad996fde3f.tar.gz cpython-de8c723ddd7306493f0322c728e8abad996fde3f.tar.bz2 |
Merged
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_lib2to3.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_lib2to3.py b/Lib/test/test_lib2to3.py index 0d6f9a3..1afaf70 100644 --- a/Lib/test/test_lib2to3.py +++ b/Lib/test/test_lib2to3.py @@ -1,6 +1,7 @@ # Skipping test_parser and test_all_fixers # because of running from lib2to3.tests import (test_fixers, test_pytree, test_util, test_refactor, + test_parser, test_main as test_main_) import unittest from test.support import run_unittest @@ -9,7 +10,7 @@ def suite(): tests = unittest.TestSuite() loader = unittest.TestLoader() for m in (test_fixers, test_pytree,test_util, test_refactor, - test_main_): + test_parser, test_main_): tests.addTests(loader.loadTestsFromModule(m)) return tests |