You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/12/07 11:27:59 UTC

[camel] 01/02: (chores) camel-kafka: added display name to the auth test case

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 03e669a49497a7c120b6eeb71e6ac1e84bab27f9
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Wed Dec 7 10:30:56 2022 +0100

    (chores) camel-kafka: added display name to the auth test case
---
 .../apache/camel/component/kafka/integration/KafkaConsumerAuthIT.java   | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerAuthIT.java b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerAuthIT.java
index 068e4ebeda1..1af2198c793 100644
--- a/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerAuthIT.java
+++ b/components/camel-kafka/src/test/java/org/apache/camel/component/kafka/integration/KafkaConsumerAuthIT.java
@@ -31,6 +31,7 @@ import org.apache.kafka.clients.producer.ProducerRecord;
 import org.apache.kafka.common.header.internals.RecordHeader;
 import org.junit.jupiter.api.AfterEach;
 import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.DisplayName;
 import org.junit.jupiter.api.MethodOrderer;
 import org.junit.jupiter.api.Order;
 import org.junit.jupiter.api.Test;
@@ -104,6 +105,7 @@ public class KafkaConsumerAuthIT extends BaseEmbeddedKafkaAuthTestSupport {
         };
     }
 
+    @DisplayName("Tests that Camel can adequately connect and consume from an authenticated Kafka instance")
     @Timeout(30)
     @Order(3)
     @Test