Merge "Make test_throttler happy" into stable/train

This commit is contained in:
Zuul 2021-09-24 16:05:15 +00:00 committed by Gerrit Code Review
commit b420a7873d
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ class TestThrottler(base.BaseTestCase):
def sleep_mock(amount_to_sleep):
sleep(amount_to_sleep)
self.assertGreater(threshold, amount_to_sleep)
self.assertGreaterEqual(threshold, amount_to_sleep)
with mock.patch.object(utils.eventlet, "sleep",
side_effect=sleep_mock):