Make test_throttler happy

neutron.tests.unit.common.test_utils.TestThrottler.test_throttler
is failing with "AssertionError: 1 not greater than 1", change the
assert to assertGreaterEqual.

Change-Id: Iba29ab0b1141e731cc811e8bee076dd5726248b5
Closes-Bug: #1916572
This commit is contained in:
LIU Yulong 2021-02-23 17:19:39 +08:00
parent 4c886998b1
commit b168232e03
1 changed files with 1 additions and 1 deletions

View File

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