This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit cfb08cc801ba60fefea34933aff5c0bf6ebe351c Author: Claus Ibsen <[email protected]> AuthorDate: Sat Jul 29 09:13:11 2023 +0200 Disable test like done in core project --- .../camel/component/aws2/sns/SnsTopicProducerWithSubscriptionTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components-starter/camel-aws2-sns-starter/src/test/java/org/apache/camel/component/aws2/sns/SnsTopicProducerWithSubscriptionTest.java b/components-starter/camel-aws2-sns-starter/src/test/java/org/apache/camel/component/aws2/sns/SnsTopicProducerWithSubscriptionTest.java index 0a3cecb0bc9..b2a9a62785b 100644 --- a/components-starter/camel-aws2-sns-starter/src/test/java/org/apache/camel/component/aws2/sns/SnsTopicProducerWithSubscriptionTest.java +++ b/components-starter/camel-aws2-sns-starter/src/test/java/org/apache/camel/component/aws2/sns/SnsTopicProducerWithSubscriptionTest.java @@ -26,6 +26,7 @@ import org.apache.camel.test.infra.aws2.clients.AWSSDKClientUtils; import org.apache.camel.test.infra.common.SharedNameGenerator; import org.apache.camel.test.infra.common.TestEntityNameGenerator; import org.apache.camel.test.spring.junit5.CamelSpringBootTest; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.RegisterExtension; import org.slf4j.Logger; @@ -61,6 +62,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull; SnsTopicProducerWithSubscriptionTest.TestConfiguration.class } ) +@Disabled("Need to review this later for localstack 2.x upgrade") public class SnsTopicProducerWithSubscriptionTest extends BaseSns { private static final Logger LOG = LoggerFactory.getLogger(SnsTopicProducerWithSubscriptionTest.class);
