Skip to content

Commit

Permalink
add a failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Sep 11, 2021
1 parent efce88f commit b044de8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/features/versioned_branches_test.py
Expand Up @@ -592,6 +592,12 @@ def test_fix_py3x_only_code(s, expected):
' 3-6\n'
'else:\n'
' 3+7\n',
'import sys\n'
'if sys.version_info > (3, 6):\n'
' 3+7\n'
'else:\n'
' 3-6\n',
),
)
def test_fix_py3x_only_noop(s):
Expand Down

0 comments on commit b044de8

Please sign in to comment.