still more lenient

This commit is contained in:
Ceki Gulcu 2016-03-15 21:21:26 +01:00
parent 105c2ee18c
commit 7c2f6cd1dc
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public class SimpleLoggerMultithreadedInitializationTest {
long expected = eventCount.get() + NUM_LINES_IN_SLF4J_REPLAY_WARNING;
int actual = sps.stringList.size();
assertTrue(expected + " >= " + actual, expected >= actual);
assertTrue(expected + " < " + actual + " + 10", expected < actual + 10);
assertTrue(expected + " < " + actual + " + 16", expected < actual + 16);
}
private LoggerAccessingThread[] harness() throws InterruptedException, BrokenBarrierException {