summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_distutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_distutils.py')
-rw-r--r--Lib/test/test_distutils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_distutils.py b/Lib/test/test_distutils.py
index a9cbbb4..d613abe 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__":