update codex_plugins_beta_setting (from workspace settings) (#20250)

update the name after rename internally

see https://github.com/openai/openai/pull/871006
This commit is contained in:
Alex Zamoshchin
2026-04-29 20:40:25 -04:00
committed by GitHub
parent 515aa9a4fb
commit 8b07132e09
6 changed files with 12 additions and 7 deletions

View File

@@ -448,7 +448,8 @@ async fn plugin_install_rejects_when_workspace_codex_plugins_disabled() -> Resul
.and(header("authorization", "Bearer chatgpt-token"))
.and(header("chatgpt-account-id", "account-123"))
.respond_with(
ResponseTemplate::new(200).set_body_string(r#"{"beta_settings":{"plugins":false}}"#),
ResponseTemplate::new(200)
.set_body_string(r#"{"beta_settings":{"enable_plugins":false}}"#),
)
.mount(&server)
.await;