summaryrefslogtreecommitdiff
path: root/Lib/test/test_time.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_time.py')
-rw-r--r--Lib/test/test_time.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_time.py b/Lib/test/test_time.py
index d34b870f73..685e821d40 100644
--- a/Lib/test/test_time.py
+++ b/Lib/test/test_time.py
@@ -334,7 +334,7 @@ class TimeTestCase(unittest.TestCase):
def test_wallclock(self):
t1 = time.wallclock()
t2 = time.wallclock()
- self.assertGreater(t2, t1)
+ self.assertGreaterEqual(t2, t1)
t1 = time.wallclock()
time.sleep(0.1)