diff options
Diffstat (limited to 'Lib/test/test_platform.py')
-rw-r--r-- | Lib/test/test_platform.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py index fced4d0..3758060 100644 --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -2,7 +2,7 @@ import sys import unittest import platform -from test import test_support +from test import support class PlatformTest(unittest.TestCase): def test_architecture(self): @@ -82,7 +82,7 @@ class PlatformTest(unittest.TestCase): res = platform.libc_ver(sys.executable) def test_main(): - test_support.run_unittest( + support.run_unittest( PlatformTest ) |