fix(protocol): approval policy never prompt (#11288)

This removes overly directed language about how the model should behave
when it's in `approval_policy=never` mode.

---------

Co-authored-by: Dylan Hurd <dylan.hurd@openai.com>
This commit is contained in:
Fouad Matin
2026-02-10 09:27:46 -08:00
committed by GitHub
parent e704f488bd
commit 693bac1851
3 changed files with 7 additions and 5 deletions

View File

@@ -72,7 +72,7 @@ async fn build_codex_with_test_tool(server: &wiremock::MockServer) -> anyhow::Re
fn assert_parallel_duration(actual: Duration) {
// Allow headroom for slow CI scheduling; barrier synchronization already enforces overlap.
assert!(
actual < Duration::from_millis(1_200),
actual < Duration::from_millis(1_600),
"expected parallel execution to finish quickly, got {actual:?}"
);
}