Fix test_time for adjusted/adjustable changes
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py
index bd72af5..9ea8f0c 100644
--- a/Lib/test/test_time.py
+++ b/Lib/test/test_time.py
@@ -31,8 +31,7 @@
         time.time()
         info = time.get_clock_info('time')
         self.assertFalse(info.monotonic)
-        if sys.platform != 'win32':
-            self.assertTrue(info.adjustable)
+        self.assertTrue(info.adjustable)
 
     def test_clock(self):
         time.clock()
@@ -371,10 +370,7 @@
 
         info = time.get_clock_info('monotonic')
         self.assertTrue(info.monotonic)
-        if sys.platform == 'linux':
-            self.assertTrue(info.adjustable)
-        else:
-            self.assertFalse(info.adjustable)
+        self.assertFalse(info.adjustable)
 
     def test_perf_counter(self):
         time.perf_counter()