Reduce flakiness of taskgroups test 13 (GH-31411)
diff --git a/Lib/test/test_asyncio/test_taskgroups.py b/Lib/test/test_asyncio/test_taskgroups.py
index aab1fd1..40774a8 100644
--- a/Lib/test/test_asyncio/test_taskgroups.py
+++ b/Lib/test/test_asyncio/test_taskgroups.py
@@ -372,7 +372,7 @@ async def runner():
g1.create_task(crash_after(0.1))
async with taskgroups.TaskGroup() as g2:
- g2.create_task(crash_after(0.2))
+ g2.create_task(crash_after(10))
r = asyncio.create_task(runner())
with self.assertRaises(ExceptionGroup) as cm: