aboutsummaryrefslogtreecommitdiff
path: root/test/test_websockets.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_websockets.py')
-rw-r--r--test/test_websockets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_websockets.py b/test/test_websockets.py
index 91bac3442..13b3a1e76 100644
--- a/test/test_websockets.py
+++ b/test/test_websockets.py
@@ -192,8 +192,8 @@ class TestWebsSocketRequestHandlerConformance:
@pytest.mark.parametrize('handler', ['Websockets'], indirect=True)
@pytest.mark.parametrize('params,extensions', [
- ({'timeout': 0.00001}, {}),
- ({}, {'timeout': 0.00001}),
+ ({'timeout': sys.float_info.min}, {}),
+ ({}, {'timeout': sys.float_info.min}),
])
def test_timeout(self, handler, params, extensions):
with handler(**params) as rh: