Skip to content

Commit a7c5414

Browse files
authored
bpo-47038: Increase a test timeout for slow CI machines (GH-31951)
1 parent 3dd9bfa commit a7c5414

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_asyncio/test_waitfor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ async def foo():
144144
self.assertTrue(fut.done())
145145
# it should have been cancelled due to the timeout
146146
self.assertTrue(fut.cancelled())
147-
self.assertLess(t1 - t0, 0.2)
147+
self.assertLess(t1 - t0, 0.5)
148148
self.assertEqual(foo_running, False)
149149

150150
async def test_wait_for_blocking(self):

0 commit comments

Comments
 (0)