Skip to content

Commit e26f3b9

Browse files
committed
test_api.py: Remove redundant PYPY check
ERROR_HAS_COL_NUM is always True for PYPY.
1 parent f9afd2b commit e26f3b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyflakes/test/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def test_nonKeywordAfterKeywordSyntaxError(self):
501501
"""
502502
sourcePath = self.makeTempFile(source)
503503
last_line = ' ^\n' if ERROR_HAS_LAST_LINE else ''
504-
column = '13:' if ERROR_HAS_COL_NUM or PYPY else ''
504+
column = '13:' if ERROR_HAS_COL_NUM else ''
505505

506506
if sys.version_info >= (3, 5):
507507
message = 'positional argument follows keyword argument'

0 commit comments

Comments
 (0)