Skip to content

Commit 5fd9fb4

Browse files
committed
spotless
1 parent fa61ec6 commit 5fd9fb4

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

instrumentation/apache-dubbo-2.7/testing/src/main/java/io/opentelemetry/instrumentation/apachedubbo/v2_7/AbstractDubboTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ void testApacheDubboBase() throws ReflectiveOperationException {
144144
RpcIncubatingAttributes.RpcSystemIncubatingValues.APACHE_DUBBO),
145145
equalTo(RPC_SERVICE, "org.apache.dubbo.rpc.service.GenericService"),
146146
equalTo(RPC_METHOD, "$invoke"),
147-
equalTo(PEER_SERVICE, hasPeerService() ? "test-peer-service" : null),
147+
equalTo(
148+
PEER_SERVICE, hasPeerService() ? "test-peer-service" : null),
148149
equalTo(SERVER_ADDRESS, "localhost"),
149150
satisfies(SERVER_PORT, k -> k.isInstanceOf(Long.class)),
150151
satisfies(
@@ -276,7 +277,8 @@ void testApacheDubboTest()
276277
RpcIncubatingAttributes.RpcSystemIncubatingValues.APACHE_DUBBO),
277278
equalTo(RPC_SERVICE, "org.apache.dubbo.rpc.service.GenericService"),
278279
equalTo(RPC_METHOD, "$invokeAsync"),
279-
equalTo(PEER_SERVICE, hasPeerService() ? "test-peer-service" : null),
280+
equalTo(
281+
PEER_SERVICE, hasPeerService() ? "test-peer-service" : null),
280282
equalTo(SERVER_ADDRESS, "localhost"),
281283
satisfies(SERVER_PORT, k -> k.isInstanceOf(Long.class)),
282284
satisfies(

instrumentation/apache-dubbo-2.7/testing/src/main/java/io/opentelemetry/instrumentation/apachedubbo/v2_7/AbstractDubboTraceChainTest.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ void testDubboChain() throws ReflectiveOperationException {
186186
RpcIncubatingAttributes.RpcSystemIncubatingValues.APACHE_DUBBO),
187187
equalTo(RPC_SERVICE, "org.apache.dubbo.rpc.service.GenericService"),
188188
equalTo(RPC_METHOD, "$invoke"),
189-
equalTo(PEER_SERVICE, hasPeerService() ? "test-peer-service" : null),
189+
equalTo(
190+
PEER_SERVICE, hasPeerService() ? "test-peer-service" : null),
190191
equalTo(SERVER_ADDRESS, "localhost"),
191192
satisfies(SERVER_PORT, k -> k.isInstanceOf(Long.class)),
192193
satisfies(
@@ -221,7 +222,8 @@ void testDubboChain() throws ReflectiveOperationException {
221222
RpcIncubatingAttributes.RpcSystemIncubatingValues.APACHE_DUBBO),
222223
equalTo(RPC_SERVICE, "org.apache.dubbo.rpc.service.GenericService"),
223224
equalTo(RPC_METHOD, "$invoke"),
224-
equalTo(PEER_SERVICE, hasPeerService() ? "test-peer-service" : null),
225+
equalTo(
226+
PEER_SERVICE, hasPeerService() ? "test-peer-service" : null),
225227
equalTo(SERVER_ADDRESS, "localhost"),
226228
satisfies(SERVER_PORT, k -> k.isInstanceOf(Long.class)),
227229
satisfies(
@@ -385,7 +387,8 @@ void testDubboChainInJvm() throws ReflectiveOperationException {
385387
RpcIncubatingAttributes.RpcSystemIncubatingValues.APACHE_DUBBO),
386388
equalTo(RPC_SERVICE, "org.apache.dubbo.rpc.service.GenericService"),
387389
equalTo(RPC_METHOD, "$invoke"),
388-
equalTo(PEER_SERVICE, hasPeerService() ? "test-peer-service" : null),
390+
equalTo(
391+
PEER_SERVICE, hasPeerService() ? "test-peer-service" : null),
389392
equalTo(SERVER_ADDRESS, "localhost"),
390393
satisfies(SERVER_PORT, k -> k.isInstanceOf(Long.class)),
391394
satisfies(

0 commit comments

Comments
 (0)