diff options
| author | Thomas Grainger <tagrain@gmail.com> | 2022-07-17 17:21:58 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-17 17:21:58 (GMT) |
| commit | 07aeb7405ea42729b95ecae225f1d96a4aea5121 (patch) | |
| tree | c561f2a521e2f3d457dc4e122821f85c58c6239b /Lib/test/test_asyncio/test_subprocess.py | |
| parent | 044a593cbbe1639e906e06c47504dd1020ddfee4 (diff) | |
| download | cpython-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.py | 2 |
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) |
