Skip to content

Commit 32ac3e1

Browse files
jamesadevineCopilot
andcommitted
fix: fix pre-existing broken test in onees.rs (command → container)
The McpOptions struct no longer has a `command` field — it was renamed to `container` in a prior refactor. Update the 1ES test to use the correct field name. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent ec77f1a commit 32ac3e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compile/onees.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ mod tests {
432432
mcps.insert(
433433
"my-tool".to_string(),
434434
McpConfig::WithOptions(McpOptions {
435-
command: Some("node".to_string()),
435+
container: Some("node:20-slim".to_string()),
436436
..Default::default()
437437
}),
438438
);

0 commit comments

Comments
 (0)