diff options
Diffstat (limited to 'test/base/alltests.py')
-rw-r--r-- | test/base/alltests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/base/alltests.py b/test/base/alltests.py index d14b694cb..803b8ea3c 100644 --- a/test/base/alltests.py +++ b/test/base/alltests.py @@ -1,4 +1,4 @@ -import testbase +import testenv; testenv.configure_for_tests() import unittest def suite(): @@ -18,4 +18,4 @@ def suite(): if __name__ == '__main__': - testbase.main(suite()) + testenv.main(suite()) |