summaryrefslogtreecommitdiff
path: root/Lib/test/outstanding_bugs.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-20 21:35:26 +0000
committerBenjamin Peterson <benjamin@python.org>2008-05-20 21:35:26 +0000
commitee8712cda46338d223509cc5751fd36509ad3860 (patch)
treebb9d363b4276566415457980472001c7e3ec2bed /Lib/test/outstanding_bugs.py
parent6a654814ea3f3a918935762ffdcd33ae98e00278 (diff)
downloadcpython-git-ee8712cda46338d223509cc5751fd36509ad3860.tar.gz
#2621 rename test.test_support to test.support
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__":