Skip to content

Commit

Permalink
iostream_test: Give windows more time
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Nov 14, 2023
1 parent 06e1a65 commit 93d7ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tornado/test/iostream_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ async def test_no_match(self):
)
# The server logs a warning while cleaning up the failed connection.
# Unfortunately there's no good hook to wait for this logging.
await asyncio.sleep(0.1)
await asyncio.sleep(1 if platform.system() == 'Windows' else 0.1)

@gen_test
async def test_check_disabled(self):
Expand Down

0 comments on commit 93d7ff7

Please sign in to comment.