From 96fd46cfbeec351e2841d28827e798983ae0ae2a Mon Sep 17 00:00:00 2001 From: bellman Date: Fri, 5 Jun 2026 03:00:54 +0900 Subject: [PATCH] fix: add missing thought_signature field in tools tests Fixes two test assertions that were missing the new Option field added to the pending_tools tuple. Generated with https://github.com/Yeachan-Heo/gajae-code Co-authored-by: Gajae Code --- rust/crates/tools/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust/crates/tools/src/lib.rs b/rust/crates/tools/src/lib.rs index 1089f819..c5778538 100644 --- a/rust/crates/tools/src/lib.rs +++ b/rust/crates/tools/src/lib.rs @@ -8106,6 +8106,7 @@ mod tests { "tool-1".to_string(), "read_file".to_string(), "{\"path\":\"src/main.rs\"}".to_string(), + None, )) ); assert_eq!( @@ -8114,6 +8115,7 @@ mod tests { "tool-2".to_string(), "grep_search".to_string(), "{\"pattern\":\"TODO\"}".to_string(), + None, )) ); }