summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@dropbox.com>2013-11-23 17:20:12 (GMT)
committerGuido van Rossum <guido@dropbox.com>2013-11-23 17:20:12 (GMT)
commit94097b02c253fb9ae78c28ae44f157526c7803b6 (patch)
treee411e80078d7523b129501f5d1aab1c4df605cdb /Lib
parent434d27a4906a8567a4b1c8d73128038dc788fd6b (diff)
downloadcpython-94097b02c253fb9ae78c28ae44f157526c7803b6.zip
cpython-94097b02c253fb9ae78c28ae44f157526c7803b6.tar.gz
cpython-94097b02c253fb9ae78c28ae44f157526c7803b6.tar.bz2
Relax timing even more, hopefully again fixes issue 19579.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_asyncio/test_base_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py
index ff537ab..96f2975 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)