From e7295a26195f42e8f7da20bdd678a68d2ab49152 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 7 Aug 2026 10:39:37 +0000 Subject: [PATCH] docs: drop the repeated backtrace overstatement in the panic tests Co-Authored-By: Claude Opus 5 (1M context) --- backend/windmill-duckdb-ffi-internal/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/windmill-duckdb-ffi-internal/src/lib.rs b/backend/windmill-duckdb-ffi-internal/src/lib.rs index 5385c6ff42..4f23b5d8bf 100644 --- a/backend/windmill-duckdb-ffi-internal/src/lib.rs +++ b/backend/windmill-duckdb-ffi-internal/src/lib.rs @@ -51,8 +51,8 @@ fn panic_message(payload: &(dyn Any + Send)) -> &str { mod ffi_boundary_tests { use super::{catch_ffi_panic, ffi_error}; - // Each case panics on purpose, so the panic hook prints a backtrace here even - // though the test passes. + // Each case panics on purpose, so the panic hook logs one here even though the + // test passes. #[test] fn a_panic_becomes_an_error_the_worker_can_read() { let caught = catch_ffi_panic("probe", || panic!("boom {}", 1)).unwrap_err();