Merge ""round" may bump 1 second to 2 if sleep takes more than 1.49 sec"

This commit is contained in:
Zuul 2020-08-26 04:14:55 +00:00 committed by Gerrit Code Review
commit 945a244588
1 changed files with 2 additions and 2 deletions

View File

@ -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\).'