Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70ff037 commit 90cb6f2Copy full SHA for 90cb6f2
1 file changed
tests/test_client_functional.py
@@ -639,7 +639,8 @@ def handler(request):
639
640
641
@asyncio.coroutine
642
-def test_timeout_on_reading_data(loop, test_client):
+def test_timeout_on_reading_data(loop, test_client, mocker):
643
+ mocker.patch('aiohttp.helpers.ceil').side_effect = ceil
644
645
646
def handler(request):
@@ -661,6 +662,8 @@ def handler(request):
661
662
663
664
def test_timeout_none(loop, test_client, mocker):
665
666
+
667
668
669
resp = web.StreamResponse()
0 commit comments