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/06/01 23:41:51 UTC

[activemq-artemis] branch main updated: NO-JIRA Fixing 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 ee92ddc  NO-JIRA Fixing test
ee92ddc is described below

commit ee92ddcb3b13f8d62f34a3ff1c1a08f009ff3ed3
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Tue Jun 1 19:31:54 2021 -0400

    NO-JIRA Fixing test
---
 .../tests/integration/journal/AIOUnbuferedJournalImplTest.java       | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/journal/AIOUnbuferedJournalImplTest.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/journal/AIOUnbuferedJournalImplTest.java
index 4b40858..f2eb0aa 100644
--- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/journal/AIOUnbuferedJournalImplTest.java
+++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/journal/AIOUnbuferedJournalImplTest.java
@@ -37,6 +37,11 @@ import org.junit.BeforeClass;
  */
 public class AIOUnbuferedJournalImplTest extends JournalImplTestUnit {
 
+   @Override
+   protected boolean suportsRetention() {
+      return false;
+   }
+
    @BeforeClass
    public static void hasAIO() {
       org.junit.Assume.assumeTrue("Test case needs AIO to run", AIOSequentialFileFactory.isSupported());