diff options
Diffstat (limited to 'tests/basics/async_with2.py')
| -rw-r--r-- | tests/basics/async_with2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/async_with2.py b/tests/basics/async_with2.py index 44421ae91..5fb06ba60 100644 --- a/tests/basics/async_with2.py +++ b/tests/basics/async_with2.py @@ -1,7 +1,7 @@ # test waiting within async with enter/exit functions import sys -if sys.implementation.name == 'micropython': +if sys.implementation.name in ('micropython', 'circuitpython'): # uPy allows normal generators to be awaitables coroutine = lambda f: f else: |
