This commit is contained in:
jif-oai
2026-05-11 15:49:31 +01:00
parent 8d698d5667
commit 96b4bf3e6d

View File

@@ -188,10 +188,7 @@ mod tests {
struct StubExtensionExecutor;
impl codex_tool_api::ToolExecutor for StubExtensionExecutor {
fn execute(
&self,
_call: codex_tool_api::ToolCall,
) -> codex_tool_api::ToolFuture {
fn execute(&self, _call: codex_tool_api::ToolCall) -> codex_tool_api::ToolFuture {
Box::pin(async { Ok(json!({ "ok": true })) })
}
}