Skip to content

Commit 0e0e2e1

Browse files
committed
fix latest dep test
1 parent fef2b4f commit 0e0e2e1

File tree

1 file changed

+3
-3
lines changed
  • instrumentation/grpc-1.6/testing/src/main/java/io/opentelemetry/instrumentation/grpc/v1_6

1 file changed

+3
-3
lines changed

instrumentation/grpc-1.6/testing/src/main/java/io/opentelemetry/instrumentation/grpc/v1_6/AbstractGrpcTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1591,7 +1591,7 @@ private void assertMetrics(Server server, Status.Code statusCode) {
15911591
histogram ->
15921592
histogram.hasPointsSatisfying(
15931593
point ->
1594-
point.hasAttributesSatisfyingExactly(
1594+
point.hasAttributesSatisfying(
15951595
equalTo(SERVER_ADDRESS, "localhost"),
15961596
equalTo(SERVER_PORT, server.getPort()),
15971597
equalTo(RPC_METHOD, "SayHello"),
@@ -1614,7 +1614,7 @@ private void assertMetrics(Server server, Status.Code statusCode) {
16141614
histogram ->
16151615
histogram.hasPointsSatisfying(
16161616
point ->
1617-
point.hasAttributesSatisfyingExactly(
1617+
point.hasAttributesSatisfying(
16181618
equalTo(SERVER_ADDRESS, "localhost"),
16191619
equalTo(SERVER_PORT, server.getPort()),
16201620
equalTo(RPC_METHOD, "SayHello"),
@@ -1637,7 +1637,7 @@ private void assertMetrics(Server server, Status.Code statusCode) {
16371637
histogram ->
16381638
histogram.hasPointsSatisfying(
16391639
point ->
1640-
point.hasAttributesSatisfyingExactly(
1640+
point.hasAttributesSatisfying(
16411641
equalTo(SERVER_ADDRESS, "localhost"),
16421642
equalTo(SERVER_PORT, server.getPort()),
16431643
equalTo(RPC_METHOD, "SayHello"),

0 commit comments

Comments
 (0)