Merge pull request #19622 from cclauss/Fix-parens-for-Python3
Fix explicit tuple parameters for Python 3
This commit is contained in:
@@ -25,7 +25,8 @@ class FormatHtmlTest(unittest.TestCase):
|
||||
(u"Stop & Shop", u"Stop & Shop"),
|
||||
(u"<a>нтмℓ-єѕ¢αρє∂</a>", u"<a>нтмℓ-єѕ¢αρє∂</a>"),
|
||||
)
|
||||
def test_simple(self, (before, after)):
|
||||
def test_simple(self, before_after):
|
||||
(before, after) = before_after
|
||||
self.assertEqual(unicode(Text(_(before))), after)
|
||||
self.assertEqual(unicode(Text(before)), after)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user