Make the test a bit more lenient

If it's not 'fast' enough that's OK, we're mostly trying to make sure we don't go too fast
master
Bradlee Speice 2016-08-25 17:49:25 -04:00
parent 003a0024a0
commit 1375669888
1 changed files with 2 additions and 2 deletions

View File

@ -118,9 +118,9 @@ class RateLimitTest(MongoTest):
end = datetime.now()
# Check that we acquired the lock
assert did_acquire
# Check that we only used one backoff period
# Check that we used at least one backoff period
total_seconds = (end - start).total_seconds()
assert 1 < total_seconds < 2
assert 1 < total_seconds
def test_sleep_for_gives_correct_time(self):
ratelimit = MongoRateLimit()