aboutsummaryrefslogtreecommitdiff
path: root/test/test_websockets.py
diff options
context:
space:
mode:
authorsepro <4618135+seproDev@users.noreply.github.com>2024-03-04 17:47:38 +0100
committerGitHub <noreply@github.com>2024-03-04 17:47:38 +0100
commitac340d0745a9de5d494033e3507ef624ba25add3 (patch)
tree6c1b45f416f3d9ce0532a249b8df2cc707c1acbf /test/test_websockets.py
parent11ffa92a61e5847b3dfa8975f91ecb3ac2178841 (diff)
[test:websockets] Fix timeout test on Windows (#9344)
Authored by: seproDev
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: