Commit 90faa091 authored by Yury Selivanov's avatar Yury Selivanov

asyncio: Update 3.4 asyncio/test_tasks to upstream version

parent 90ba2ca6
......@@ -2352,7 +2352,8 @@ class TimeoutTests(test_utils.TestCase):
foo_running = False
dt = self.loop.time() - start
self.assertTrue(0.09 < dt < 0.11, dt)
# tolerate a small delta for slow delta or unstable clocks
self.assertTrue(0.09 < dt < 0.12, dt)
self.assertFalse(foo_running)
self.loop.run_until_complete(go())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment