summaryrefslogtreecommitdiff
path: root/tests/extmod/uasyncio_gather.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/uasyncio_gather.py')
-rw-r--r--tests/extmod/uasyncio_gather.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/uasyncio_gather.py b/tests/extmod/uasyncio_gather.py
index 2697a6278..0e2948b07 100644
--- a/tests/extmod/uasyncio_gather.py
+++ b/tests/extmod/uasyncio_gather.py
@@ -34,7 +34,7 @@ async def gather_task():
async def main():
# Simple gather with return values
- print(await asyncio.gather(factorial("A", 2), factorial("B", 3), factorial("C", 4),))
+ print(await asyncio.gather(factorial("A", 2), factorial("B", 3), factorial("C", 4)))
# Cancel a multi gather
# TODO doesn't work, Task should not forward cancellation from gather to sub-task