Skip to content

Commit 80a9ba5

Browse files
authored
Reduce flakiness of taskgroups test 13 (GH-31411)
1 parent cf345e9 commit 80a9ba5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_asyncio/test_taskgroups.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ async def runner():
372372
g1.create_task(crash_after(0.1))
373373

374374
async with taskgroups.TaskGroup() as g2:
375-
g2.create_task(crash_after(0.2))
375+
g2.create_task(crash_after(10))
376376

377377
r = asyncio.create_task(runner())
378378
with self.assertRaises(ExceptionGroup) as cm:

0 commit comments

Comments
 (0)