summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_subprocess.py
diff options
context:
space:
mode:
authorThomas Grainger <tagrain@gmail.com>2022-07-17 17:21:58 (GMT)
committerGitHub <noreply@github.com>2022-07-17 17:21:58 (GMT)
commit07aeb7405ea42729b95ecae225f1d96a4aea5121 (patch)
treec561f2a521e2f3d457dc4e122821f85c58c6239b /Lib/test/test_asyncio/test_subprocess.py
parent044a593cbbe1639e906e06c47504dd1020ddfee4 (diff)
downloadcpython-07aeb7405ea42729b95ecae225f1d96a4aea5121.zip
cpython-07aeb7405ea42729b95ecae225f1d96a4aea5121.tar.gz
cpython-07aeb7405ea42729b95ecae225f1d96a4aea5121.tar.bz2
gh-72889: Remove redundant mock.Mock()._is_coroutine = False workarounds (#94926)
Diffstat (limited to 'Lib/test/test_asyncio/test_subprocess.py')
-rw-r--r--Lib/test/test_asyncio/test_subprocess.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py
index 09a5c39..305330a 100644
--- a/Lib/test/test_asyncio/test_subprocess.py
+++ b/Lib/test/test_asyncio/test_subprocess.py
@@ -50,8 +50,6 @@ class SubprocessTransportTests(test_utils.TestCase):
def create_transport(self, waiter=None):
protocol = mock.Mock()
- protocol.connection_made._is_coroutine = False
- protocol.process_exited._is_coroutine = False
transport = TestSubprocessTransport(
self.loop, protocol, ['test'], False,
None, None, None, 0, waiter=waiter)