Skip to content

Commit 17d3657

Browse files
committed
chore: try to fix build failure
Change-Id: Icd45c926cf4377b33664f63774aa8517ab0fc372
1 parent 80eb600 commit 17d3657

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

instrumentation/lettuce/lettuce-5.1/javaagent/src/test_compatibility/java/io/opentelemetry/javaagent/instrumentation/lettuce/v5_1/DisableNoEntranceSpanAndMetricsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void testEmptyTrace() {
6565
testing().runWithSpan("parent", () -> syncCommands.set("TESTSETKEY", "TESTSETVAL"));
6666
assertThat(res).isEqualTo("OK");
6767

68-
assertThat(testing.spans().isEmpty());
69-
assertThat(testing.metrics().isEmpty());
68+
assertThat(testing.spans().isEmpty()).isTrue();
69+
assertThat(testing.metrics().isEmpty()).isTrue();
7070
}
7171
}

0 commit comments

Comments
 (0)