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-Tag: v3.5.0a1~414 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=73866efc34c9d4365ac4f4b93f08b1b0853ba5fb;p=thirdparty%2FPython%2Fcpython.git 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 fc557d71f0a7..9060b9d3ed32 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':