#2621 rename test.test_support to test.support
diff --git a/Lib/test/test_errno.py b/Lib/test/test_errno.py
index 3077191..28425e2 100755
--- a/Lib/test/test_errno.py
+++ b/Lib/test/test_errno.py
@@ -4,7 +4,7 @@
"""
import errno
-from test import test_support
+from test import support
import unittest
std_c_errors = frozenset(['EDOM', 'ERANGE'])
@@ -33,7 +33,7 @@
def test_main():
- test_support.run_unittest(ErrnoAttributeTests, ErrorcodeTests)
+ support.run_unittest(ErrnoAttributeTests, ErrorcodeTests)
if __name__ == '__main__':