Commit 6222d769 authored by Victor Stinner's avatar Victor Stinner

Fix test_time for adjusted/adjustable changes

parent 2b89fdf7
......@@ -31,7 +31,6 @@ class TimeTestCase(unittest.TestCase):
time.time()
info = time.get_clock_info('time')
self.assertFalse(info.monotonic)
if sys.platform != 'win32':
self.assertTrue(info.adjustable)
def test_clock(self):
......@@ -371,9 +370,6 @@ class TimeTestCase(unittest.TestCase):
info = time.get_clock_info('monotonic')
self.assertTrue(info.monotonic)
if sys.platform == 'linux':
self.assertTrue(info.adjustable)
else:
self.assertFalse(info.adjustable)
def test_perf_counter(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment