From: Victor Stinner Date: Mon, 27 Nov 2017 23:35:55 +0000 (+0100) Subject: asyncio: Fix BaseSelectorEventLoopTests (#4595) X-Git-Tag: v3.7.0a3~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92f9339a58a613a56683510499509d1b702921a8;p=thirdparty%2FPython%2Fcpython.git asyncio: Fix BaseSelectorEventLoopTests (#4595) Currently, two tests fail with PYTHONASYNCIODEBUG=1 (or using -X dev). --- diff --git a/Lib/test/test_asyncio/test_selector_events.py b/Lib/test/test_asyncio/test_selector_events.py index e67afcc72040..2adb43ae725a 100644 --- a/Lib/test/test_asyncio/test_selector_events.py +++ b/Lib/test/test_asyncio/test_selector_events.py @@ -187,6 +187,7 @@ class BaseSelectorEventLoopTests(test_utils.TestCase): sock = mock.Mock() sock.fileno.return_value = 10 sock.recv.side_effect = BlockingIOError + sock.gettimeout.return_value = 0.0 self.loop.add_reader = mock.Mock() self.loop.remove_reader = mock.Mock() @@ -267,6 +268,7 @@ class BaseSelectorEventLoopTests(test_utils.TestCase): sock = mock.Mock() sock.fileno.return_value = 10 sock.send.side_effect = BlockingIOError + sock.gettimeout.return_value = 0.0 self.loop.add_writer = mock.Mock() self.loop.remove_writer = mock.Mock()