From 7569184489f963cd6cce05688cfb0e44e26dc28d Mon Sep 17 00:00:00 2001 From: adrian Date: Fri, 10 Apr 2026 17:56:29 -0700 Subject: [PATCH] Fix codex-api argument comment lint --- codex-rs/codex-api/src/api_bridge_tests.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/codex-rs/codex-api/src/api_bridge_tests.rs b/codex-rs/codex-api/src/api_bridge_tests.rs index 422cd134db..51c7c8d2fb 100644 --- a/codex-rs/codex-api/src/api_bridge_tests.rs +++ b/codex-rs/codex-api/src/api_bridge_tests.rs @@ -144,8 +144,10 @@ fn core_auth_provider_reports_when_auth_header_will_attach() { #[test] fn core_auth_provider_supports_non_bearer_authorization_headers() { - let auth = - CoreAuthProvider::for_test_authorization_header(Some("AgentAssertion opaque-token"), None); + let auth = CoreAuthProvider::for_test_authorization_header( + Some("AgentAssertion opaque-token"), + /*account_id*/ None, + ); assert!(auth.auth_header_attached()); assert_eq!(auth.auth_header_name(), Some("authorization"));