Skip to content

Commit 4d6565c

Browse files
committed
fix tests
1 parent d22532a commit 4d6565c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/sdk/server-ai/src/test/java/com/launchdarkly/sdk/server/ai/AIGraphTrackerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public void trackTotalTokensNullIsIgnored() {
184184
tracker.trackTotalTokens(null);
185185
verify(client, never()).trackMetric(
186186
eq("$ld:ai:graph:total_tokens"), any(), any(), anyDouble());
187-
assertThat(warnings().stream().anyMatch(w -> w.contains("tokens was null")), is(true));
187+
assertThat(debugs().stream().anyMatch(w -> w.contains("tokens was null")), is(true));
188188
}
189189

190190
// ---- trackPath ------------------------------------------------------------

0 commit comments

Comments
 (0)