From: Victor Stinner Date: Mon, 18 Apr 2016 08:28:42 +0000 (+0200) Subject: Fix test_asyncio.test_timeout_disable() X-Git-Tag: v3.6.0a1~174^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1b578608ef397dcc7a64ff1228aa770e2b65cb2;p=thirdparty%2FPython%2Fcpython.git Fix test_asyncio.test_timeout_disable() Issue #26777: Fix random failing of the test on the "AMD64 FreeBSD 9.x 3.5" buildbot: File ".../Lib/test/test_asyncio/test_tasks.py", line 2398, in go self.assertTrue(0.09 < dt < 0.11, dt) AssertionError: False is not true : 0.11902812402695417 Replace "< 0.11" with "< 0.15". --- diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py index 40e5f8830fe0..128b7ce9e56a 100644 --- a/Lib/test/test_asyncio/test_tasks.py +++ b/Lib/test/test_asyncio/test_tasks.py @@ -2395,7 +2395,9 @@ class TimeoutTests(test_utils.TestCase): resp = yield from long_running_task() self.assertEqual(resp, 'done') dt = self.loop.time() - t0 - self.assertTrue(0.09 < dt < 0.11, dt) + # tolerate a time delta for clocks with bad resolution + # and slow buildbots + self.assertTrue(0.09 < dt < 0.15, dt) self.loop.run_until_complete(go()) def test_raise_runtimeerror_if_no_task(self):