diff options
Diffstat (limited to 'Lib/test/test_asyncio/test_taskgroups.py')
| -rw-r--r-- | Lib/test/test_asyncio/test_taskgroups.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
