We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1100af4 commit 0c5fa07Copy full SHA for 0c5fa07
codex-rs/app-server/tests/suite/v2/turn_start.rs
@@ -261,11 +261,11 @@ async fn turn_start_exec_approval_toggle_v2() -> Result<()> {
261
let ServerRequest::CommandExecutionRequestApproval { request_id, params } = server_req else {
262
panic!("expected CommandExecutionRequestApproval request");
263
};
264
- assert_eq!(params.request.call_id, "call1");
+ assert_eq!(params.item_id, "call1");
265
assert_eq!(
266
- params.request.parsed_cmd,
+ params.metadata.parsed_cmd,
267
vec![ParsedCommand::Unknown {
268
- cmd: "python3 -c 'print(42)'".to_string()
+ cmd: "python3 -c 'print(42)'".to_string(),
269
}]
270
);
271
0 commit comments