This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit c55e4e01f28669cb28cbb2027157cb3672771823 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Thu Aug 4 09:13:02 2022 +0200 (chores) camel-kafka: fix invalid test annotation --- .../component/kafka/integration/commit/KafkaConsumerNoopCommitIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/commit/KafkaConsumerNoopCommitIT.java b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/commit/KafkaConsumerNoopCommitIT.java index 032214963a3..fa5de350ff0 100644 --- a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/commit/KafkaConsumerNoopCommitIT.java +++ b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/commit/KafkaConsumerNoopCommitIT.java @@ -60,7 +60,7 @@ public class KafkaConsumerNoopCommitIT extends BaseManualCommitTestSupport { }; } - @RepeatedTest(1) + @Test public void kafkaAutoCommitDisabledDuringRebalance() throws Exception { to.expectedMessageCount(1); String firstMessage = "message-0"; @@ -100,7 +100,7 @@ public class KafkaConsumerNoopCommitIT extends BaseManualCommitTestSupport { to.assertIsSatisfied(3000); } - @RepeatedTest(1) + @Test public void kafkaManualCommit() throws Exception { kafkaManualCommitTest(TOPIC); }
