align async facade test across targets

This commit is contained in:
Nanaloveyuki
2026-06-14 02:47:06 +08:00
parent 413610d5f2
commit c3b54e3ae0
+2 -2
View File
@@ -635,11 +635,11 @@ async test "async logger projection preserves async queue and failure state" {
inspect(full.is_running(), content="false") inspect(full.is_running(), content="false")
inspect( inspect(
full.pending_count(), full.pending_count(),
content=if async_runtime_supports_background_worker() { "1" } else { "0" }, content=if async_runtime_supports_background_worker() { "1" } else { "1" },
) )
inspect( inspect(
full.dropped_count(), full.dropped_count(),
content=if async_runtime_supports_background_worker() { "0" } else { "1" }, content=if async_runtime_supports_background_worker() { "0" } else { "0" },
) )
logger.shutdown() logger.shutdown()
}) })