Merge ""round" may bump 1 second to 2 if sleep takes more than 1.49 sec"
This commit is contained in:
commit
945a244588
@ -542,13 +542,13 @@ class TimerTestCase(base.BaseTestCase):
|
||||
def test__getattr(self):
|
||||
with utils.Timer() as timer:
|
||||
time.sleep(1)
|
||||
self.assertEqual(1, round(timer.total_seconds()))
|
||||
self.assertLess(timer.total_seconds(), 2)
|
||||
self.assertEqual(1, timer.delta.seconds)
|
||||
|
||||
def test__enter_with_timeout(self):
|
||||
with utils.Timer(timeout=10) as timer:
|
||||
time.sleep(1)
|
||||
self.assertEqual(1, round(timer.total_seconds()))
|
||||
self.assertLess(timer.total_seconds(), 2)
|
||||
|
||||
def test__enter_with_timeout_exception(self):
|
||||
msg = r'Timer timeout expired after 1 second\(s\).'
|
||||
|
Loading…
Reference in New Issue
Block a user