You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2021/10/07 21:12:04 UTC

[activemq-artemis] branch main updated: NO-JIRA fixing typoe on test

This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new 41baff7  NO-JIRA fixing typoe on test
41baff7 is described below

commit 41baff74239f08c0d23fef2cf18fc6d897491f1d
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Thu Oct 7 17:11:51 2021 -0400

    NO-JIRA fixing typoe on test
---
 .../artemis/tests/integration/openwire/CompactingOpenWireTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/openwire/CompactingOpenWireTest.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/openwire/CompactingOpenWireTest.java
index cffea50..c8a5b28 100644
--- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/openwire/CompactingOpenWireTest.java
+++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/openwire/CompactingOpenWireTest.java
@@ -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);
 
    }
 }