Skip to content

Commit c80ecf5

Browse files
committed
./gradlew spotlessApply
1 parent b3d0efc commit c80ecf5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

smoke-tests-otel-starter/spring-boot-common/src/main/java/io/opentelemetry/spring/smoketest/AbstractKafkaSpringStarterSmokeTest.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ void shouldInstrumentProducerAndConsumer() {
6868
MessagingIncubatingAttributes.MESSAGING_DESTINATION_NAME,
6969
"testTopic"),
7070
equalTo(MessagingIncubatingAttributes.MESSAGING_OPERATION, "publish"),
71-
satisfies(MESSAGING_KAFKA_BOOTSTRAP_SERVERS, AbstractStringAssert::isNotEmpty),
71+
satisfies(
72+
MESSAGING_KAFKA_BOOTSTRAP_SERVERS,
73+
AbstractStringAssert::isNotEmpty),
7274
satisfies(
7375
MESSAGING_CLIENT_ID,
7476
stringAssert -> stringAssert.startsWith("producer")),
@@ -90,7 +92,9 @@ void shouldInstrumentProducerAndConsumer() {
9092
MessagingIncubatingAttributes.MESSAGING_DESTINATION_NAME,
9193
"testTopic"),
9294
equalTo(MessagingIncubatingAttributes.MESSAGING_OPERATION, "process"),
93-
satisfies(MESSAGING_KAFKA_BOOTSTRAP_SERVERS, AbstractStringAssert::isNotEmpty),
95+
satisfies(
96+
MESSAGING_KAFKA_BOOTSTRAP_SERVERS,
97+
AbstractStringAssert::isNotEmpty),
9498
satisfies(
9599
MessagingIncubatingAttributes.MESSAGING_MESSAGE_BODY_SIZE,
96100
AbstractLongAssert::isNotNegative),

0 commit comments

Comments
 (0)