diff options
Diffstat (limited to 'Lib/test/test_super.py')
-rw-r--r-- | Lib/test/test_super.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_super.py b/Lib/test/test_super.py index fc303ea..5594b11 100644 --- a/Lib/test/test_super.py +++ b/Lib/test/test_super.py @@ -2,7 +2,7 @@ import sys import unittest -from test import test_support +from test import support class A: @@ -72,7 +72,7 @@ class TestSuper(unittest.TestCase): def test_main(): - test_support.run_unittest(TestSuper) + support.run_unittest(TestSuper) if __name__ == "__main__": |