From 335d8d70e2d3ed98b7047a6d83d977946a0980a8 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Sat, 19 Oct 2019 13:45:25 +0300 Subject: [PATCH] Increate test timeout to satisfy slow CI box --- tests/test_web_websocket_functional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_web_websocket_functional.py b/tests/test_web_websocket_functional.py index 0c3bcdd54a5..94280cf45f1 100644 --- a/tests/test_web_websocket_functional.py +++ b/tests/test_web_websocket_functional.py @@ -280,7 +280,7 @@ async def handler(request): await asyncio.sleep(0.08) assert (await aborted) - assert elapsed < 0.201, \ + assert elapsed < 0.25, \ 'close() should have returned before ' \ 'at most 2x timeout.'