Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
proper timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
skosito committed Apr 26, 2024
1 parent 3aed267 commit 30674c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration_tests/test_websockets.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,5 @@ async def async_test():
# allow retry
pass

loop.run_until_complete(async_test(), 50)
timeout = 50
loop.run_until_complete(asyncio.wait_for(async_test(), timeout))

0 comments on commit 30674c3

Please sign in to comment.