Increase backoff period from 100 to 500

This increases the overall test execution time but makes it less likely
to fail on slow test machines.
This commit is contained in:
andreisavu 2011-12-19 16:35:39 +02:00
parent a7359a25e7
commit 3cd9f6cdcf
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class BackoffLimitedRetryHandlerTest {
@Test
void testExponentialBackoffDelayDefaultMaxInterval500() throws InterruptedException {
long period = 100;
long period = 500;
long acceptableDelay = period - 1;
long startTime = System.nanoTime();