Update IXExponentialBackoffTest.cpp
This commit is contained in:
parent
7360333aca
commit
f7eb3688dd
@ -29,7 +29,10 @@ namespace ix
|
||||
REQUIRE(calculateRetryWaitMilliseconds(20, 10000, 100) == 10000);
|
||||
REQUIRE(calculateRetryWaitMilliseconds(25, 10000, 100) == 10000);
|
||||
|
||||
// FIXME bug when retrycount > 25
|
||||
// Things get special after 26 retries
|
||||
REQUIRE(calculateRetryWaitMilliseconds(26, 10000, 100) == 10000);
|
||||
REQUIRE(calculateRetryWaitMilliseconds(27, 10000, 100) == 10000);
|
||||
REQUIRE(calculateRetryWaitMilliseconds(27, 10000, 100) == 10000);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user