Skip to content

Commit 0ea8a2d

Browse files
committed
fix test
1 parent bcb7feb commit 0ea8a2d

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
@@ -279,8 +279,10 @@ class JavaContinuousProfilerTest {
279279
verify(fixture.mockLogger)
280280
.log(
281281
eq(SentryLevel.WARNING),
282-
eq("Disabling profiling because traces directory is not writable or does not exist: %s"),
282+
eq("Disabling profiling because traces directory is not writable or does not exist: %s (writable=%b, exists=%b)"),
283283
eq(expectedPath),
284+
eq(false),
285+
eq(true),
284286
)
285287
}
286288

0 commit comments

Comments
 (0)