Skip to content

Commit

Permalink
bpo-47038: Increase a test timeout for slow CI machines (GH-31951)
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov authored Mar 17, 2022
1 parent 3dd9bfa commit a7c5414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_asyncio/test_waitfor.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ async def foo():
self.assertTrue(fut.done())
# it should have been cancelled due to the timeout
self.assertTrue(fut.cancelled())
self.assertLess(t1 - t0, 0.2)
self.assertLess(t1 - t0, 0.5)
self.assertEqual(foo_running, False)

async def test_wait_for_blocking(self):
Expand Down

0 comments on commit a7c5414

Please sign in to comment.