diff options
Diffstat (limited to 'Lib/test/test_distutils.py')
-rw-r--r-- | Lib/test/test_distutils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_distutils.py b/Lib/test/test_distutils.py index d613abe..a9cbbb4 100644 --- a/Lib/test/test_distutils.py +++ b/Lib/test/test_distutils.py @@ -5,13 +5,13 @@ the test_suite() function there returns a test suite that's ready to be run. """ +from test import test_support import distutils.tests -import test.support def test_main(): - test.support.run_unittest(distutils.tests.test_suite()) - test.support.reap_children() + test_support.run_unittest(distutils.tests.test_suite()) + test_support.reap_children() if __name__ == "__main__": |