commit | 73866efc34c9d4365ac4f4b93f08b1b0853ba5fb | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Fri Nov 28 22:42:06 2014 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Fri Nov 28 22:42:06 2014 +0100 |
tree | a47a4bfafbbb5131db382868a39b46bdc0e08307 | |
parent | ddf3bc9078c674c6a6790e04ad222ddfe7c0dcbc [diff] |
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 fc557d7..9060b9d 100644 --- a/Lib/test/test_asyncio/test_subprocess.py +++ b/Lib/test/test_asyncio/test_subprocess.py
@@ -196,6 +196,7 @@ self.assertEqual(stdout, b'x' * size) self.assertTrue(transport.pause_reading.called) + self.assertTrue(transport.resume_reading.called) if sys.platform != 'win32':