summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_peepholer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_peepholer.py b/Lib/test/test_peepholer.py
index bedf763..0e723eb 100644
--- a/Lib/test/test_peepholer.py
+++ b/Lib/test/test_peepholer.py
@@ -135,7 +135,8 @@ class TestTranforms(unittest.TestCase):
def test_set_conversion(self):
for line in (
- 'x in (1,2,3)',
+ 'x in [1,2,3]',
+ 'x in (1,2,3)',
'x not in (1,2,3)',
'not x in (1,2,3)',
'not x not in (1,2,3)',