diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-24 14:25:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-24 14:25:50 (GMT) |
commit | 502dba0cf38ebd657d444fd49b8d648fe86bbb7d (patch) | |
tree | 4967afdec687ab34c063edd1044faaa33ed05507 | |
parent | db2b1e1830b74f5e15abc3bac3fd67e35ca39951 (diff) | |
download | cpython-502dba0cf38ebd657d444fd49b8d648fe86bbb7d.zip cpython-502dba0cf38ebd657d444fd49b8d648fe86bbb7d.tar.gz cpython-502dba0cf38ebd657d444fd49b8d648fe86bbb7d.tar.bz2 |
GH-89369: test_contextlib_async finalizes event loop after each test (GH-93074)
Use asyncio.run().
(cherry picked from commit d2ef66a10be1250b13c32fbf3c0f9a9d2d98b124)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
-rw-r--r-- | Lib/test/test_contextlib_async.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/Lib/test/test_contextlib_async.py b/Lib/test/test_contextlib_async.py index d6a34e2..d44d362 100644 --- a/Lib/test/test_contextlib_async.py +++ b/Lib/test/test_contextlib_async.py @@ -14,15 +14,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): |