This commit is contained in:
Ahmed Ibrahim
2026-01-19 09:28:19 -08:00
parent 4e8b5e9cff
commit 829b0f5d1a
2 changed files with 6 additions and 3 deletions

View File

@@ -10,9 +10,6 @@ use tokio::time::Duration;
use tokio::time::Instant;
use tokio_util::sync::CancellationToken;
use crate::bash::extract_bash_command;
use crate::codex::Session;
use crate::codex::TurnContext;
use crate::exec::append_abort_message;
use crate::exec_env::create_env;
use crate::protocol::ExecCommandSource;

View File

@@ -276,6 +276,7 @@ async fn interrupt_shell_records_partial_output() {
.submit(Op::UserInput {
items: vec![UserInput::Text {
text: "start shell".into(),
text_elements: Vec::new(),
}],
final_output_json_schema: None,
})
@@ -292,6 +293,7 @@ async fn interrupt_shell_records_partial_output() {
.submit(Op::UserInput {
items: vec![UserInput::Text {
text: "follow up".into(),
text_elements: Vec::new(),
}],
final_output_json_schema: None,
})
@@ -335,6 +337,7 @@ async fn interrupt_local_shell_records_partial_output() {
.submit(Op::UserInput {
items: vec![UserInput::Text {
text: "start local shell".into(),
text_elements: Vec::new(),
}],
final_output_json_schema: None,
})
@@ -351,6 +354,7 @@ async fn interrupt_local_shell_records_partial_output() {
.submit(Op::UserInput {
items: vec![UserInput::Text {
text: "follow up".into(),
text_elements: Vec::new(),
}],
final_output_json_schema: None,
})
@@ -410,6 +414,7 @@ async fn interrupt_unified_exec_records_partial_output() {
.submit(Op::UserInput {
items: vec![UserInput::Text {
text: "start unified exec".into(),
text_elements: Vec::new(),
}],
final_output_json_schema: None,
})
@@ -426,6 +431,7 @@ async fn interrupt_unified_exec_records_partial_output() {
.submit(Op::UserInput {
items: vec![UserInput::Text {
text: "follow up".into(),
text_elements: Vec::new(),
}],
final_output_json_schema: None,
})