aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_asyncio/test_transports.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2022-02-10 14:57:20 +0200
committerGitHub <noreply@github.com>2022-02-10 14:57:20 +0200
commit012e77eb5c3ba3d411f5967a7f368ebdb42ab88c (patch)
treedf20f3f485dc20d388284213ef70fd55acbd2cfc /Lib/test/test_asyncio/test_transports.py
parent4f21d528f0fc29c861c5461c9fa60bc532b0d300 (diff)
downloadcpython-012e77eb5c3ba3d411f5967a7f368ebdb42ab88c.tar.gz
cpython-012e77eb5c3ba3d411f5967a7f368ebdb42ab88c.zip
Fix warning: asyncio.events._event_loop_policy was modified by test_asyncio (GH-31253)
Diffstat (limited to 'Lib/test/test_asyncio/test_transports.py')
-rw-r--r--Lib/test/test_asyncio/test_transports.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_transports.py b/Lib/test/test_asyncio/test_transports.py
index df448557a7b..bbdb218efaa 100644
--- a/Lib/test/test_asyncio/test_transports.py
+++ b/Lib/test/test_asyncio/test_transports.py
@@ -7,6 +7,12 @@ import asyncio
from asyncio import transports
+def tearDownModule():
+ # not needed for the test file but added for uniformness with all other
+ # asyncio test files for the sake of unified cleanup
+ asyncio.set_event_loop_policy(None)
+
+
class TransportTests(unittest.TestCase):
def test_ctor_extra_is_none(self):