diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-08-10 23:52:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-10 23:52:13 (GMT) |
commit | 270c3c62edd81c14fcdb6a24b4b518a777ec6534 (patch) | |
tree | 16aa6a6f01612ffc0e8349402a6b732708a7f289 | |
parent | e8e7fba0b24582959feca9c31f2a72fc0251f83d (diff) | |
download | cpython-270c3c62edd81c14fcdb6a24b4b518a777ec6534.zip cpython-270c3c62edd81c14fcdb6a24b4b518a777ec6534.tar.gz cpython-270c3c62edd81c14fcdb6a24b4b518a777ec6534.tar.bz2 |
bpo-31008: Fix asyncio test_wait_for_handle on Windows (#3065) (#3068)
(cherry picked from commit 5659a72f487579be76335c09c8ba8b2f1800adde)
-rw-r--r-- | Lib/test/test_asyncio/test_windows_events.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_windows_events.py b/Lib/test/test_asyncio/test_windows_events.py index 1afcae1..c72eef1 100644 --- a/Lib/test/test_asyncio/test_windows_events.py +++ b/Lib/test/test_asyncio/test_windows_events.py @@ -118,7 +118,9 @@ class ProactorTests(test_utils.TestCase): self.assertEqual(done, False) self.assertFalse(fut.result()) - self.assertTrue(0.48 < elapsed < 0.9, elapsed) + # bpo-31008: Tolerate only 450 ms (at least 500 ms expected), + # because of bad clock resolution on Windows + self.assertTrue(0.45 <= elapsed <= 0.9, elapsed) _overlapped.SetEvent(event) |