Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4231173

Browse files
committed
revert change in inappropiate branch
1 parent 3ea23dd commit 4231173

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/lib2to3/tests/test_util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -568,8 +568,8 @@ def test_beginning(self):
568568

569569
def test_from_import(self):
570570
node = parse('bar()')
571-
fixer_util.touch_import("html", "escape", node)
572-
self.assertEqual(str(node), 'from html import escape\nbar()\n\n')
571+
fixer_util.touch_import("cgi", "escape", node)
572+
self.assertEqual(str(node), 'from cgi import escape\nbar()\n\n')
573573

574574
def test_name_import(self):
575575
node = parse('bar()')

0 commit comments

Comments
 (0)