HBASE-19129 TestChoreService is flaky

Increase the delta to compensate for environmental variance.
This commit is contained in:
Andrew Purtell 2017-10-31 00:08:09 +00:00
parent 47c3faee5d
commit 285efb1f1b
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ public class TestChoreService {
@Test (timeout=20000)
public void testForceTrigger() throws InterruptedException {
final int period = 100;
final int delta = 5;
final int delta = 10;
ChoreService service = new ChoreService("testForceTrigger");
final CountingChore chore = new CountingChore("countingChore", period);
try {