summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_taskgroups.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2022-02-18 17:28:56 (GMT)
committerGitHub <noreply@github.com>2022-02-18 17:28:56 (GMT)
commit80a9ba537f1f1666a9e6c5eceef4683f86967a1f (patch)
treec7632adaadabf51e0eb79e5bd9ee7912f10a20d8 /Lib/test/test_asyncio/test_taskgroups.py
parentcf345e945f48f54785799390c2e92c5310847bd4 (diff)
downloadcpython-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.py2
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: