Skip to content

Commit

Permalink
Revert "Fix"
Browse files Browse the repository at this point in the history
This reverts commit b9b3e97.
  • Loading branch information
Ms2ger authored and stephenmcgruer committed Mar 24, 2020
1 parent 2982ebc commit 135120a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/lint/tests/test_file_lints.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,8 +633,9 @@ def test_late_timeout():
]


@pytest.mark.skipif(six.PY3, reason="Cannot parse print statements from python 3")
def test_print_statement():
error_map = check_with_files(b"def foo():\n print('statement')\n print\n")
error_map = check_with_files(b"def foo():\n print 'statement'\n print\n")

for (filename, (errors, kind)) in error_map.items():
check_errors(errors)
Expand Down

0 comments on commit 135120a

Please sign in to comment.