summaryrefslogtreecommitdiff
path: root/tests/extmod/uasyncio_gather.py.exp
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2021-11-17 13:45:42 +1100
committerDamien George <damien@micropython.org>2021-11-17 14:11:31 +1100
commit43d08688c398184013bbfb0190e2529e4032e003 (patch)
tree08880ce3322ac038695ad3f3fb7249635b2ab4db /tests/extmod/uasyncio_gather.py.exp
parent5cf71b55960651fc506df0ac41490f12dd1d63fd (diff)
extmod/uasyncio: Fix gather returning exceptions from a cancelled task.
Fixes issue #5882.
Diffstat (limited to 'tests/extmod/uasyncio_gather.py.exp')
-rw-r--r--tests/extmod/uasyncio_gather.py.exp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/extmod/uasyncio_gather.py.exp b/tests/extmod/uasyncio_gather.py.exp
index a37578d7e..95310bbe1 100644
--- a/tests/extmod/uasyncio_gather.py.exp
+++ b/tests/extmod/uasyncio_gather.py.exp
@@ -8,3 +8,6 @@ Task B: factorial(3) = 6
Task C: Compute factorial(4)...
Task C: factorial(4) = 24
[2, 6, 24]
+start 2
+end 2
+[CancelledError(), 2]