Skip to content

Commit 292643d

Browse files
committed
Fix CI
1 parent 673cf2a commit 292643d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/websockets/test_graphql_transport_ws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ async def test_subsciption_cancel_finalization_delay(ws: WebSocketClient):
10861086

10871087
end = time.time()
10881088
elapsed = end - start
1089-
assert elapsed < delay * 1.25 # adds a 25% to make sure it runs well in CI
1089+
assert elapsed < delay * 2 # adds a 100% to make sure it runs well in CI
10901090

10911091

10921092
async def test_error_handler_for_timeout(http_client: HttpClient):

0 commit comments

Comments
 (0)