From: Loïc Estève Date: Fri, 13 Sep 2024 18:13:30 +0000 (+0200) Subject: gh-122957: Fix test flakiness in asyncio test in free-thread build (#124039) X-Git-Tag: v3.14.0a1~480 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eadb9660ed836b40667d4f662eae90287ff18397;p=thirdparty%2FPython%2Fcpython.git gh-122957: Fix test flakiness in asyncio test in free-thread build (#124039) --- diff --git a/Lib/test/test_asyncio/test_threads.py b/Lib/test/test_asyncio/test_threads.py index 1138a93e0f78..774380270a7d 100644 --- a/Lib/test/test_asyncio/test_threads.py +++ b/Lib/test/test_asyncio/test_threads.py @@ -30,7 +30,9 @@ class ToThreadTests(unittest.IsolatedAsyncioTestCase): func.assert_called_once() async def test_to_thread_concurrent(self): - func = mock.Mock() + calls = [] + def func(): + calls.append(1) futs = [] for _ in range(10): @@ -38,7 +40,7 @@ class ToThreadTests(unittest.IsolatedAsyncioTestCase): futs.append(fut) await asyncio.gather(*futs) - self.assertEqual(func.call_count, 10) + self.assertEqual(sum(calls), 10) async def test_to_thread_args_kwargs(self): # Unlike run_in_executor(), to_thread() should directly accept kwargs.