summaryrefslogtreecommitdiffstats
path: root/Lib/lib2to3/tests
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-10-15 21:56:35 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-10-15 21:56:35 (GMT)
commit42311734ab3ee5f04dcaa7c0772f7d27de46065d (patch)
tree70908dbcc4a4cdd0fea0ec1bb0897911f0306b9c /Lib/lib2to3/tests
parent3ea23ddabffe85a0d69bf0fc67c962b5174df345 (diff)
downloadcpython-42311734ab3ee5f04dcaa7c0772f7d27de46065d.zip
cpython-42311734ab3ee5f04dcaa7c0772f7d27de46065d.tar.gz
cpython-42311734ab3ee5f04dcaa7c0772f7d27de46065d.tar.bz2
revert change in inappropiate branch
Diffstat (limited to 'Lib/lib2to3/tests')
-rw-r--r--Lib/lib2to3/tests/test_util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib2to3/tests/test_util.py b/Lib/lib2to3/tests/test_util.py
index d2be82c..0ab7537 100644
--- a/Lib/lib2to3/tests/test_util.py
+++ b/Lib/lib2to3/tests/test_util.py
@@ -568,8 +568,8 @@ class Test_touch_import(support.TestCase):
def test_from_import(self):
node = parse('bar()')
- fixer_util.touch_import("html", "escape", node)
- self.assertEqual(str(node), 'from html import escape\nbar()\n\n')
+ fixer_util.touch_import("cgi", "escape", node)
+ self.assertEqual(str(node), 'from cgi import escape\nbar()\n\n')
def test_name_import(self):
node = parse('bar()')