From: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> Date: Tue, 24 May 2022 13:41:32 +0000 (+0530) Subject: GH-89369: test_contextlib_async finalizes event loop after each test (#93074) X-Git-Tag: v3.12.0a1~1443 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d2ef66a10be1250b13c32fbf3c0f9a9d2d98b124;p=thirdparty%2FPython%2Fcpython.git GH-89369: test_contextlib_async finalizes event loop after each test (#93074) Use asyncio.run(). --- diff --git a/Lib/test/test_contextlib_async.py b/Lib/test/test_contextlib_async.py index 76bd81c7d02c..b64673d2c31e 100644 --- a/Lib/test/test_contextlib_async.py +++ b/Lib/test/test_contextlib_async.py @@ -15,15 +15,12 @@ def _async_test(func): @functools.wraps(func) def wrapper(*args, **kwargs): coro = func(*args, **kwargs) - loop = asyncio.new_event_loop() - asyncio.set_event_loop(loop) - try: - return loop.run_until_complete(coro) - finally: - loop.close() - asyncio.set_event_loop_policy(None) + asyncio.run(coro) return wrapper +def tearDownModule(): + asyncio.set_event_loop_policy(None) + class TestAbstractAsyncContextManager(unittest.TestCase):