Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ba2ca commit 90faa09Copy full SHA for 90faa09
1 file changed
Lib/test/test_asyncio/test_tasks.py
@@ -2352,7 +2352,8 @@ def go():
2352
foo_running = False
2353
2354
dt = self.loop.time() - start
2355
- self.assertTrue(0.09 < dt < 0.11, dt)
+ # tolerate a small delta for slow delta or unstable clocks
2356
+ self.assertTrue(0.09 < dt < 0.12, dt)
2357
self.assertFalse(foo_running)
2358
2359
self.loop.run_until_complete(go())
0 commit comments