Skip to content

Commit ab9b950

Browse files
committed
fix test
1 parent ecc0215 commit ab9b950

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sentry-async-profiler/src/test/java/io/sentry/asyncprofiler/profiling/JavaContinuousProfilerTest.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,10 @@ class JavaContinuousProfilerTest {
276276
verify(fixture.mockLogger)
277277
.log(
278278
eq(SentryLevel.WARNING),
279-
eq("Disabling profiling because traces directory is not writable or does not exist: %s"),
279+
eq("Disabling profiling because traces directory is not writable or does not exist: %s (writable=%b, exists=%b)"),
280280
eq(expectedPath),
281+
eq(false),
282+
eq(true),
281283
)
282284
}
283285

0 commit comments

Comments
 (0)