From 487aedb77c9ef9a7cb5e42ae8b2141f310c5d8ef Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Thu, 2 Jan 2014 09:41:10 -0600 Subject: [PATCH] Issue #20101: Allow test_monotonic to pass on Windows machines on which time.get_clock_info('monotonic').resolution == 0.015600099999999999 This is just a workaround pending a real resolution to #20101. --- Lib/test/test_time.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index 6b7a4fb7686..ae3113a04af 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -376,7 +376,8 @@ class TimeTestCase(unittest.TestCase): t2 = time.monotonic() dt = t2 - t1 self.assertGreater(t2, t1) - self.assertTrue(0.5 <= dt <= 1.0, dt) + # Issue #20101: On some Windows machines, dt may be slightly low + self.assertTrue(0.45 <= dt <= 1.0, dt) info = time.get_clock_info('monotonic') self.assertTrue(info.monotonic)