summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-28 21:42:06 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-11-28 21:42:06 (GMT)
commit73866efc34c9d4365ac4f4b93f08b1b0853ba5fb (patch)
treea47a4bfafbbb5131db382868a39b46bdc0e08307
parentddf3bc9078c674c6a6790e04ad222ddfe7c0dcbc (diff)
downloadcpython-73866efc34c9d4365ac4f4b93f08b1b0853ba5fb.zip
cpython-73866efc34c9d4365ac4f4b93f08b1b0853ba5fb.tar.gz
cpython-73866efc34c9d4365ac4f4b93f08b1b0853ba5fb.tar.bz2
Issue #22685, asyncio: resume_reading() must also be called in test_pause_reading()
-rw-r--r--Lib/test/test_asyncio/test_subprocess.py1
1 files changed, 1 insertions, 0 deletions
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 @@ class SubprocessMixin:
self.assertEqual(stdout, b'x' * size)
self.assertTrue(transport.pause_reading.called)
+ self.assertTrue(transport.resume_reading.called)
if sys.platform != 'win32':