diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-08-21 20:09:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-21 20:09:08 (GMT) |
commit | 585390fdd8661b4bc08bdfc27551292da9b4b9b8 (patch) | |
tree | e3fbcb982e4671df607dfbe1addfdce9ee02a8ff /Lib/test/test_asyncio/test_events.py | |
parent | 15a64d89a31b7e91f0361c305b7b27d8761db93d (diff) | |
download | cpython-585390fdd8661b4bc08bdfc27551292da9b4b9b8.zip cpython-585390fdd8661b4bc08bdfc27551292da9b4b9b8.tar.gz cpython-585390fdd8661b4bc08bdfc27551292da9b4b9b8.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.
Diffstat (limited to 'Lib/test/test_asyncio/test_events.py')
-rw-r--r-- | Lib/test/test_asyncio/test_events.py | 3 |
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 e781769..e50a53d 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -1971,10 +1971,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): |