[codex-analytics] fix auth retention test lint

This commit is contained in:
Roy Han
2026-04-27 17:03:17 -07:00
parent a12c04ce37
commit 40bceeb2ce

View File

@@ -807,7 +807,7 @@ async fn default_client_retains_auth_manager() {
let _client = AnalyticsEventsClient::new(
auth_manager,
"http://localhost".to_string(),
None,
/*analytics_enabled*/ None,
AuthManagerRetention::Strong,
);
@@ -822,7 +822,7 @@ async fn non_owning_client_does_not_retain_auth_manager() {
let _client = AnalyticsEventsClient::new(
Arc::clone(&auth_manager),
"http://localhost".to_string(),
None,
/*analytics_enabled*/ None,
AuthManagerRetention::Weak,
);
drop(auth_manager);