summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_subprocess.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_asyncio/test_subprocess.py')
-rw-r--r--Lib/test/test_asyncio/test_subprocess.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py
index 3b962bf..3204d42 100644
--- a/Lib/test/test_asyncio/test_subprocess.py
+++ b/Lib/test/test_asyncio/test_subprocess.py
@@ -141,7 +141,7 @@ if sys.platform != 'win32':
policy = asyncio.get_event_loop_policy()
self.loop = policy.new_event_loop()
- # ensure that the event loop is passed explicitly in the code
+ # ensure that the event loop is passed explicitly in asyncio
policy.set_event_loop(None)
watcher = self.Watcher()
@@ -172,7 +172,7 @@ else:
policy = asyncio.get_event_loop_policy()
self.loop = asyncio.ProactorEventLoop()
- # ensure that the event loop is passed explicitly in the code
+ # ensure that the event loop is passed explicitly in asyncio
policy.set_event_loop(None)
def tearDown(self):