From 458a6319e7ebeda01344f5c851dc9177b7074528 Mon Sep 17 00:00:00 2001 From: adrian Date: Fri, 10 Apr 2026 17:33:56 -0700 Subject: [PATCH] Fix login auth argument comment --- codex-rs/login/src/auth/auth_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/login/src/auth/auth_tests.rs b/codex-rs/login/src/auth/auth_tests.rs index d5cf30ca13..921a7d2bd0 100644 --- a/codex-rs/login/src/auth/auth_tests.rs +++ b/codex-rs/login/src/auth/auth_tests.rs @@ -481,7 +481,7 @@ async fn auth_manager_notifies_when_auth_state_changes() { let dir = tempdir().unwrap(); let manager = AuthManager::shared( dir.path().to_path_buf(), - false, + /*enable_codex_api_key_env*/ false, AuthCredentialsStoreMode::File, ); let mut auth_state_rx = manager.subscribe_auth_state();