NO-JIRA fixing typoe on test

This commit is contained in:
Clebert Suconic 2021-10-07 17:11:51 -04:00
parent 5508b8a87a
commit 41baff7423
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ public class CompactingOpenWireTest extends BasicOpenWireTest {
Map<Integer, AtomicInteger> counts = countJournal(server.getConfiguration());
counts.forEach((a, b) -> System.out.println(a + " = " + b));
AtomicInteger duplicateIDCounts = counts.get((int)JournalRecordIds.DUPLICATE_ID);
Assert.assertTrue("There are duplicate IDs on the journal even though the system was reconfigured to not persist them::" + duplicateIDCounts, duplicateIDCounts == null || duplicateIDCounts.incrementAndGet() == 0);
Assert.assertTrue("There are duplicate IDs on the journal even though the system was reconfigured to not persist them::" + duplicateIDCounts, duplicateIDCounts == null || duplicateIDCounts.get() == 0);
}
}