diff options
author | sepro <4618135+seproDev@users.noreply.github.com> | 2024-03-04 17:47:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-04 17:47:38 +0100 |
commit | ac340d0745a9de5d494033e3507ef624ba25add3 (patch) | |
tree | 6c1b45f416f3d9ce0532a249b8df2cc707c1acbf | |
parent | 11ffa92a61e5847b3dfa8975f91ecb3ac2178841 (diff) |
[test:websockets] Fix timeout test on Windows (#9344)
Authored by: seproDev
-rw-r--r-- | test/test_websockets.py | 4 |
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: |