Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/lib2to3/tests/test_fixers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3036,7 +3036,7 @@ class Test_map(FixerTestCase):
fixer = "map"

def check(self, b, a):
self.unchanged("from future_builtins import map; " + b, a)
self.unchanged("from future_builtins import map; " + b)
super(Test_map, self).check(b, a)

def test_prefix_preservation(self):
Expand Down Expand Up @@ -3160,7 +3160,7 @@ class Test_zip(FixerTestCase):
fixer = "zip"

def check(self, b, a):
self.unchanged("from future_builtins import zip; " + b, a)
self.unchanged("from future_builtins import zip; " + b)
super(Test_zip, self).check(b, a)

def test_zip_basic(self):
Expand Down