diff --git a/codex-rs/config/src/config_requirements.rs b/codex-rs/config/src/config_requirements.rs index a4e68d5f65..f1fabf160b 100644 --- a/codex-rs/config/src/config_requirements.rs +++ b/codex-rs/config/src/config_requirements.rs @@ -2198,9 +2198,12 @@ mod tests { sqlite_home: Some(Sourced::new(sqlite_home, source.clone())), log_dir: Some(Sourced::new(log_dir, source.clone())), model_catalog_json: Some(Sourced::new(model_catalog_json, source.clone(),)), - check_for_update_on_startup: Some(Sourced::new(false, source.clone())), + check_for_update_on_startup: Some(Sourced::new( + /*value*/ false, + source.clone(), + )), otel: Some(Sourced::new(otel, source.clone())), - allow_login_shell: Some(Sourced::new(false, source.clone())), + allow_login_shell: Some(Sourced::new(/*value*/ false, source.clone())), shell_environment_policy: Some(Sourced::new( shell_environment_policy, source.clone(), diff --git a/codex-rs/core/src/config/config_tests.rs b/codex-rs/core/src/config/config_tests.rs index 417f2334e4..748bb0e77e 100644 --- a/codex-rs/core/src/config/config_tests.rs +++ b/codex-rs/core/src/config/config_tests.rs @@ -9341,9 +9341,9 @@ sandbox_private_desktop = true r#" cli_auth_credentials_store = "keyring" chatgpt_base_url = "https://managed.example/backend-api" -sqlite_home = "{}" -log_dir = "{}" -model_catalog_json = "{}" +sqlite_home = {:?} +log_dir = {:?} +model_catalog_json = {:?} check_for_update_on_startup = false allow_login_shell = false