Fix stale tool_search e2e assertion

This commit is contained in:
Henry Park
2026-03-27 15:07:07 -07:00
parent 0b66aa6f8a
commit b5204372a3
+4 -2
View File
@@ -934,8 +934,10 @@ mod tests {
.as_str()
.expect("tool_search description should be a string");
assert!(
tool_search_description.contains("Install and activate channels here"),
"tool_search description should describe setup/activation: {tool_search_description}"
tool_search_description.contains("`tool_install`")
&& tool_search_description.contains("`tool_activate`"),
"tool_search description should describe setup/activation via tool_install and \
tool_activate: {tool_search_description}"
);
assert!(
tool_search_description.contains("use the `message` tool for proactive outbound sends"),