summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-08-21 20:29:18 (GMT)
committerGitHub <noreply@github.com>2021-08-21 20:29:18 (GMT)
commitd5781e973079a20b2370686d6e080316d6c9f90d (patch)
tree94b974141ad377ffd9949e8ddd2d4228af4cf409
parent7ef0673de48958bc3a75af5f152564bd2dffa8dd (diff)
downloadcpython-d5781e973079a20b2370686d6e080316d6c9f90d.zip
cpython-d5781e973079a20b2370686d6e080316d6c9f90d.tar.gz
cpython-d5781e973079a20b2370686d6e080316d6c9f90d.tar.bz2
bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870)
The code of the test was never executed because the test function was unintentionally converted to a generator function. (cherry picked from commit 585390fdd8661b4bc08bdfc27551292da9b4b9b8) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
-rw-r--r--Lib/test/test_asyncio/test_events.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index fa6c49d..7114c2f 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -1968,10 +1968,11 @@ class SubprocessTestsMixin:
functools.partial(MySubprocessProtocol, self.loop),
'exit 7', stdin=None, stdout=None, stderr=None,
start_new_session=True)
- _, proto = yield self.loop.run_until_complete(connect)
+ transp, proto = self.loop.run_until_complete(connect)
self.assertIsInstance(proto, MySubprocessProtocol)
self.loop.run_until_complete(proto.completed)
self.assertEqual(7, proto.returncode)
+ transp.close()
def test_subprocess_exec_invalid_args(self):
async def connect(**kwds):