summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Vandenberg <jayvdb@gmail.com>2018-08-03 15:55:24 +0700
committerJohn Vandenberg <jayvdb@gmail.com>2018-08-06 16:25:18 +0700
commite26f3b9fa4bbb8288258dad1c398d4e9026c894f (patch)
tree021604c3e511d74ec853bcdaa02c0f2aba2d1101
parentf9afd2b04f98116fde647a60aed310114768d179 (diff)
downloadpyflakes-e26f3b9fa4bbb8288258dad1c398d4e9026c894f.tar.gz
test_api.py: Remove redundant PYPY check
ERROR_HAS_COL_NUM is always True for PYPY.
-rw-r--r--pyflakes/test/test_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyflakes/test/test_api.py b/pyflakes/test/test_api.py
index 5e5df82..8bdb698 100644
--- a/pyflakes/test/test_api.py
+++ b/pyflakes/test/test_api.py
@@ -501,7 +501,7 @@ foo(bar=baz, bax)
"""
sourcePath = self.makeTempFile(source)
last_line = ' ^\n' if ERROR_HAS_LAST_LINE else ''
- column = '13:' if ERROR_HAS_COL_NUM or PYPY else ''
+ column = '13:' if ERROR_HAS_COL_NUM else ''
if sys.version_info >= (3, 5):
message = 'positional argument follows keyword argument'