From: Benjamin Peterson Date: Fri, 15 Oct 2010 21:56:35 +0000 (+0000) Subject: revert change in inappropiate branch X-Git-Tag: v3.2a4~543 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=42311734ab3ee5f04dcaa7c0772f7d27de46065d;p=thirdparty%2FPython%2Fcpython.git revert change in inappropiate branch --- diff --git a/Lib/lib2to3/tests/test_util.py b/Lib/lib2to3/tests/test_util.py index d2be82c4a26c..0ab753767e5a 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()')