summaryrefslogtreecommitdiffstats
path: root/Lib/test/autotest.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/autotest.py')
-rw-r--r--Lib/test/autotest.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/autotest.py b/Lib/test/autotest.py
index fa85cc1..41c2088 100644
--- a/Lib/test/autotest.py
+++ b/Lib/test/autotest.py
@@ -1,5 +1,6 @@
# This should be equivalent to running regrtest.py from the cmdline.
# It can be especially handy if you're in an interactive shell, e.g.,
# from test import autotest.
-from test.libregrtest import main
-main()
+
+from test import regrtest
+regrtest.main()