From: Guido van Rossum Date: Sat, 23 Nov 2013 17:20:12 +0000 (-0800) Subject: Relax timing even more, hopefully again fixes issue 19579. X-Git-Tag: v3.4.0b1~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=94097b02c253fb9ae78c28ae44f157526c7803b6;p=thirdparty%2FPython%2Fcpython.git Relax timing even more, hopefully again fixes issue 19579. --- diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py index ff537ab2bdd6..96f29750c721 100644 --- a/Lib/test/test_asyncio/test_base_events.py +++ b/Lib/test/test_asyncio/test_base_events.py @@ -181,7 +181,7 @@ class BaseEventLoopTests(unittest.TestCase): self.loop._run_once() t = self.loop._selector.select.call_args[0][0] - self.assertTrue(9.9 < t < 10.1, t) + self.assertTrue(9.5 < t < 10.5, t) self.assertEqual([h2], self.loop._scheduled) self.assertTrue(self.loop._process_events.called)