summaryrefslogtreecommitdiff
path: root/Lib/test/outstanding_bugs.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/outstanding_bugs.py')
-rw-r--r--Lib/test/outstanding_bugs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/outstanding_bugs.py b/Lib/test/outstanding_bugs.py
index 3f672fb9d1..9e4784ce16 100644
--- a/Lib/test/outstanding_bugs.py
+++ b/Lib/test/outstanding_bugs.py
@@ -7,7 +7,7 @@
#
import unittest
-from test import test_support
+from test import support
#
# One test case for outstanding bugs at the moment:
@@ -22,7 +22,7 @@ class TextIOWrapperTest(unittest.TestCase):
self.normalized = b"AAA\nBBB\nCCC\nDDD\nEEE\n".decode("ASCII")
def tearDown(self):
- test_support.unlink(test_support.TESTFN)
+ support.unlink(support.TESTFN)
def test_issue1395_1(self):
@@ -81,7 +81,7 @@ class TextIOWrapperTest(unittest.TestCase):
def test_main():
- test_support.run_unittest(
+ support.run_unittest(
TextIOWrapperTest)
if __name__ == "__main__":