Skip to content

Commit

Permalink
chore: Disable flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrouand committed Jan 8, 2025
1 parent ea30801 commit 4fda3e1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
import static java.util.concurrent.TimeUnit.SECONDS;
import static org.assertj.core.api.Assertions.assertThat;
import static org.awaitility.Awaitility.await;
import static org.junit.jupiter.api.condition.OS.LINUX;
import static org.junit.jupiter.api.condition.OS.WINDOWS;

import com.chutneytesting.action.TestFinallyActionRegistry;
import com.chutneytesting.action.TestLogger;
Expand All @@ -31,6 +33,7 @@
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;

@SuppressWarnings("unchecked")
public class AmqpBasicConsumeActionTest {
Expand Down Expand Up @@ -306,6 +309,7 @@ public void should_not_consume_message_when_another_one_is_consuming() {
);
}

@DisabledOnOs({ LINUX })
@Test
public void should_consume_message_one_another_queue() {
Action shouldFailConsumer = mockConnectionFactory(new AmqpBasicConsumeAction(
Expand Down

0 comments on commit 4fda3e1

Please sign in to comment.