From: Victor Stinner Date: Wed, 3 Jul 2013 21:07:37 +0000 (+0200) Subject: test_time.test_monotonic(): use a longer sleep to try to make the test more reliable X-Git-Tag: v3.4.0a1~337^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a9c99a61196742f7b2abd374f7490a20e4fba2db;p=thirdparty%2FPython%2Fcpython.git test_time.test_monotonic(): use a longer sleep to try to make the test more reliable --- diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py index 18e056826a63..faf9779a4732 100644 --- a/Lib/test/test_time.py +++ b/Lib/test/test_time.py @@ -368,11 +368,11 @@ class TimeTestCase(unittest.TestCase): 'need time.monotonic') def test_monotonic(self): t1 = time.monotonic() - time.sleep(0.1) + time.sleep(0.5) t2 = time.monotonic() dt = t2 - t1 self.assertGreater(t2, t1) - self.assertAlmostEqual(dt, 0.1, delta=0.2) + self.assertAlmostEqual(dt, 0.5, delta=0.2) info = time.get_clock_info('monotonic') self.assertTrue(info.monotonic)