From 3a8b9e313ff760bd628532af83e4546d5499bc1b Mon Sep 17 00:00:00 2001 From: Sayan Sisodiya Date: Wed, 24 Jun 2026 19:49:02 -0700 Subject: [PATCH] core tests: use current automatic environment builder --- codex-rs/core/tests/suite/rmcp_client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex-rs/core/tests/suite/rmcp_client.rs b/codex-rs/core/tests/suite/rmcp_client.rs index ab53c553f2..96d92ec661 100644 --- a/codex-rs/core/tests/suite/rmcp_client.rs +++ b/codex-rs/core/tests/suite/rmcp_client.rs @@ -2339,7 +2339,7 @@ async fn streamable_http_chatgpt_auth_respects_configured_authorization() -> any }, ); }) - .build_with_remote_env(&server) + .build_with_auto_env(&server) .await?; wait_for_mcp_server(&chatgpt_auth_fixture.codex, "chatgpt_auth").await?; drop(chatgpt_auth_fixture); @@ -2379,7 +2379,7 @@ async fn streamable_http_chatgpt_auth_respects_configured_authorization() -> any }, ); }) - .build_with_remote_env(&server) + .build_with_auto_env(&server) .await?; wait_for_mcp_server(&configured_auth_fixture.codex, "configured_auth").await?;