Skip to content

Commit

Permalink
Fix test decorator.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed May 11, 2023
1 parent d53a6a2 commit d21c0c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lupa/tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
IS_PYPY = False

IS_PYTHON2 = sys.version_info[0] < 3
not_in_pypy = unittest.skipIf(IS_PYPY)
not_in_pypy = unittest.skipIf(IS_PYPY, "test not run in PyPy")

try:
_next = next
Expand Down

0 comments on commit d21c0c9

Please sign in to comment.