Skip to content

Commit 47a8880

Browse files
committed
spotless
1 parent e4fb2dd commit 47a8880

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

instrumentation/lettuce/lettuce-5.1/testing/src/main/java/io/opentelemetry/instrumentation/lettuce/v5_1/AbstractLettuceReactiveClientTest.java

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -309,14 +309,15 @@ void testBlockingSubscriber() {
309309
span.hasName("GET")
310310
.hasKind(SpanKind.CLIENT)
311311
.hasParent(trace.getSpan(0))
312-
.hasAttributesSatisfyingExactly(addExtraAttributes(
313-
equalTo(NetworkAttributes.NETWORK_TYPE, "ipv4"),
314-
equalTo(NetworkAttributes.NETWORK_PEER_ADDRESS, ip),
315-
equalTo(NetworkAttributes.NETWORK_PEER_PORT, port),
316-
equalTo(ServerAttributes.SERVER_ADDRESS, host),
317-
equalTo(ServerAttributes.SERVER_PORT, port),
318-
equalTo(DbIncubatingAttributes.DB_SYSTEM, "redis"),
319-
equalTo(DbIncubatingAttributes.DB_STATEMENT, "GET a")))
312+
.hasAttributesSatisfyingExactly(
313+
addExtraAttributes(
314+
equalTo(NetworkAttributes.NETWORK_TYPE, "ipv4"),
315+
equalTo(NetworkAttributes.NETWORK_PEER_ADDRESS, ip),
316+
equalTo(NetworkAttributes.NETWORK_PEER_PORT, port),
317+
equalTo(ServerAttributes.SERVER_ADDRESS, host),
318+
equalTo(ServerAttributes.SERVER_PORT, port),
319+
equalTo(DbIncubatingAttributes.DB_SYSTEM, "redis"),
320+
equalTo(DbIncubatingAttributes.DB_STATEMENT, "GET a")))
320321
.hasEventsSatisfyingExactly(
321322
event -> event.hasName("redis.encode.start"),
322323
event -> event.hasName("redis.encode.end"))));

0 commit comments

Comments
 (0)