From bd1cb72d6e154647839676bab9499f21c6dd9f5e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 18 Feb 2022 09:06:13 -0800 Subject: [PATCH] Reduce flakiness of taskgroups test 13 --- Lib/test/test_asyncio/test_taskgroups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_asyncio/test_taskgroups.py b/Lib/test/test_asyncio/test_taskgroups.py index aab1fd1ebb38d8..40774a8993e3ff 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: