diff options
| author | Guido van Rossum <guido@python.org> | 2022-02-18 17:28:56 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-18 17:28:56 (GMT) |
| commit | 80a9ba537f1f1666a9e6c5eceef4683f86967a1f (patch) | |
| tree | c7632adaadabf51e0eb79e5bd9ee7912f10a20d8 /Lib/test/test_asyncio/test_taskgroups.py | |
| parent | cf345e945f48f54785799390c2e92c5310847bd4 (diff) | |
| download | cpython-80a9ba537f1f1666a9e6c5eceef4683f86967a1f.zip cpython-80a9ba537f1f1666a9e6c5eceef4683f86967a1f.tar.gz cpython-80a9ba537f1f1666a9e6c5eceef4683f86967a1f.tar.bz2 | |
Reduce flakiness of taskgroups test 13 (GH-31411)
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: |
