From 7cf541b054c657b119e7d646072c4faa83a4b18a Mon Sep 17 00:00:00 2001 From: rreichel3-oai Date: Mon, 4 May 2026 12:30:52 -0400 Subject: [PATCH] Fix remaining rebased login test callsites codex-rs/login/tests/suite/login_server_e2e.rs: add the streamlined-login field to the multi-workspace server options literal and remove a stale extra constructor argument. --- codex-rs/login/tests/suite/login_server_e2e.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/login/tests/suite/login_server_e2e.rs b/codex-rs/login/tests/suite/login_server_e2e.rs index 29a3a40662..ee9aca131e 100644 --- a/codex-rs/login/tests/suite/login_server_e2e.rs +++ b/codex-rs/login/tests/suite/login_server_e2e.rs @@ -227,6 +227,7 @@ async fn login_server_includes_all_forced_workspace_query_params() -> Result<()> "org-required-a".to_string(), "org-required-b".to_string(), ]), + codex_streamlined_login: false, }; let server = run_login_server(opts)?; assert!( @@ -489,7 +490,6 @@ async fn falls_back_to_registered_fallback_port_when_default_port_is_in_use() -> tmp.path().to_path_buf(), codex_login::CLIENT_ID.to_string(), /*forced_chatgpt_workspace_id*/ None, - /*codex_streamlined_login*/ false, AuthCredentialsStoreMode::File, ); opts.issuer = issuer;