From a39a6d247db5274f663a42393ae143a18aedf18a Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 14 May 2015 07:46:18 +0000 Subject: [PATCH] Fix previous commit --- test/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_utils.py b/test/test_utils.py index 5e7b8e19a..083a393c0 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -540,7 +540,7 @@ class FormatTestCase(SupyTestCase): 'apples, oranges, and watermelon.') def testPercentL(self): - self.assertIn(format('%L', set(('apples', 'oranges', 'watermelon'])), [ + self.assertIn(format('%L', set(['apples', 'oranges', 'watermelon'])), [ 'apples, oranges, and watermelon', 'oranges, apples, and watermelon', 'apples, watermelon, and oranges',