Merge "Make test_throttler happy" into stable/victoria

This commit is contained in:
Zuul 2021-09-24 16:04:54 +00:00 committed by Gerrit Code Review
commit 47f702d532
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,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):