summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-01 03:11:16 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-02-01 03:11:16 (GMT)
commita0aa88ce893d6948d971dfecc2126dc7cb88dfea (patch)
tree85924a6d40603e1bebfcde04f78d5699937e6878
parent524be3056e29a86741ba355c759ff304adf6cc3c (diff)
downloadcpython-a0aa88ce893d6948d971dfecc2126dc7cb88dfea.zip
cpython-a0aa88ce893d6948d971dfecc2126dc7cb88dfea.tar.gz
cpython-a0aa88ce893d6948d971dfecc2126dc7cb88dfea.tar.bz2
test_asyncio: relax timing, the "AMD64 Windows Server 2008 [SB] 3.x" buildbot
looks to be slow
-rw-r--r--Lib/test/test_asyncio/test_windows_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_windows_events.py b/Lib/test/test_asyncio/test_windows_events.py
index 3c271eb..846049a 100644
--- a/Lib/test/test_asyncio/test_windows_events.py
+++ b/Lib/test/test_asyncio/test_windows_events.py
@@ -105,7 +105,7 @@ class ProactorTests(unittest.TestCase):
self.loop.run_until_complete(f)
elapsed = self.loop.time() - start
self.assertFalse(f.result())
- self.assertTrue(0.18 < elapsed < 0.5, elapsed)
+ self.assertTrue(0.18 < elapsed < 0.9, elapsed)
_overlapped.SetEvent(event)