Skip to content

Commit

Permalink
Fix constants test
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed May 28, 2023
1 parent 8a5df76 commit 75cffe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coconut/tests/constants_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ def test_imports(self):
or PYPY and new_imp.startswith("tkinter")
# don't test trollius on PyPy
or PYPY and old_imp == "trollius"
# don't test typing_extensions on Python 2
or PY2 and old_imp.startswith("typing_extensions")
# don't test typing_extensions, async_generator on Python 2
or PY2 and old_imp.startswith(("typing_extensions", "async_generator"))
):
pass
elif sys.version_info >= ver_cutoff:
Expand Down

0 comments on commit 75cffe2

Please sign in to comment.