From: Victor Stinner Date: Fri, 28 Nov 2014 21:42:06 +0000 (+0100) Subject: Issue #22685, asyncio: resume_reading() must also be called in test_pause_reading() X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73866efc34c9d4365ac4f4b93f08b1b0853ba5fb;p=python Issue #22685, asyncio: resume_reading() must also be called in test_pause_reading() --- diff --git a/Lib/test/test_asyncio/test_subprocess.py b/Lib/test/test_asyncio/test_subprocess.py index fc557d71f0..9060b9d3ed 100644 --- a/Lib/test/test_asyncio/test_subprocess.py +++ b/Lib/test/test_asyncio/test_subprocess.py @@ -196,6 +196,7 @@ class SubprocessMixin: self.assertEqual(stdout, b'x' * size) self.assertTrue(transport.pause_reading.called) + self.assertTrue(transport.resume_reading.called) if sys.platform != 'win32':