From 80a9ba537f1f1666a9e6c5eceef4683f86967a1f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 18 Feb 2022 09:28:56 -0800 Subject: Reduce flakiness of taskgroups test 13 (GH-31411) --- 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 aab1fd1..40774a8 100644 --- a/Lib/test/test_asyncio/test_taskgroups.py +++ b/Lib/test/test_asyncio/test_taskgroups.py @@ -372,7 +372,7 @@ class TestTaskGroup(unittest.IsolatedAsyncioTestCase): 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: -- cgit v0.12