From 048007a0422c24530bbeb2d23251352426082e70 Mon Sep 17 00:00:00 2001 From: Hare Date: Wed, 26 Aug 2026 15:47:34 +0900 Subject: [PATCH] test: complete tool output fixture --- crates/worker/tests/session_metrics_test.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/worker/tests/session_metrics_test.rs b/crates/worker/tests/session_metrics_test.rs index 53222f1b..11e46dcc 100644 --- a/crates/worker/tests/session_metrics_test.rs +++ b/crates/worker/tests/session_metrics_test.rs @@ -87,6 +87,7 @@ impl Tool for BigContentTool { Ok(ToolOutput { summary: self.summary.into(), content: Some(self.content.clone()), + attachments: Vec::new(), }) } }