summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_textwrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_textwrap.py')
-rw-r--r--Lib/test/test_textwrap.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_textwrap.py b/Lib/test/test_textwrap.py
index 1a9761a..1cbd9ce 100644
--- a/Lib/test/test_textwrap.py
+++ b/Lib/test/test_textwrap.py
@@ -9,7 +9,7 @@
#
import unittest
-from test import test_support
+from test import support
from textwrap import TextWrapper, wrap, fill, dedent
@@ -579,7 +579,7 @@ def foo():
def test_main():
- test_support.run_unittest(WrapTestCase,
+ support.run_unittest(WrapTestCase,
LongWordTestCase,
IndentTestCases,
DedentTestCase)