From b120ca03e9b8633c36d12c79b960f57c334fa491 Mon Sep 17 00:00:00 2001 From: Vadim Pushtaev Date: Mon, 18 Jan 2021 21:03:08 +0300 Subject: [PATCH] Fix wrong calls in text_fixers.py for 2to3 --- Lib/lib2to3/tests/test_fixers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py index 121ebe68e5402b..fa10caee5e146b 100644 --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -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): @@ -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):