summaryrefslogtreecommitdiff
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, 2 insertions, 3 deletions
diff --git a/Lib/test/autotest.py b/Lib/test/autotest.py
index 41c2088727..fa85cc153a 100644
--- a/Lib/test/autotest.py
+++ b/Lib/test/autotest.py
@@ -1,6 +1,5 @@
# 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 import regrtest
-regrtest.main()
+from test.libregrtest import main
+main()