diff --git a/tests/features/six_test.py b/tests/features/six_test.py index 71d41c8b..287e80f4 100644 --- a/tests/features/six_test.py +++ b/tests/features/six_test.py @@ -347,6 +347,17 @@ def test_fix_six_noop(s): '(x < y).values()', id='needs parentehsizing for Compare', ), + pytest.param( + 'x = six.itervalues(\n' + ' # comment\n' + ' x,\n' + ')', + 'x = (\n' + ' # comment\n' + ' x,\n' + ').values()', + id='multiline first argument with comment', + ), ), ) def test_fix_six(s, expected):