diff options
Diffstat (limited to 'Lib/test/autotest.py')
-rw-r--r-- | Lib/test/autotest.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/test/autotest.py b/Lib/test/autotest.py index 41c2088..fa85cc1 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() |