From 4bc96d7bbdb1cc225c18ca9cfc164051e49744d9 Mon Sep 17 00:00:00 2001 From: asiantuntija Date: Wed, 5 Aug 2026 14:15:17 +0000 Subject: [PATCH] tests: add recursion_limit attribute to remaining ACP test files (#10559) Co-authored-by: tsih --- crates/goose/tests/acp_custom_provider_methods_test.rs | 1 + crates/goose/tests/acp_custom_requests_test.rs | 1 + crates/goose/tests/acp_fork_session_test.rs | 1 + crates/goose/tests/acp_secret_cache_invalidation_test.rs | 1 + crates/goose/tests/acp_server_test.rs | 1 + crates/goose/tests/acp_transport_auth_test.rs | 1 + 6 files changed, 6 insertions(+) diff --git a/crates/goose/tests/acp_custom_provider_methods_test.rs b/crates/goose/tests/acp_custom_provider_methods_test.rs index 167c420bf..77334f867 100644 --- a/crates/goose/tests/acp_custom_provider_methods_test.rs +++ b/crates/goose/tests/acp_custom_provider_methods_test.rs @@ -1,3 +1,4 @@ +#![recursion_limit = "256"] #[allow(dead_code)] #[path = "acp_common_tests/mod.rs"] mod common_tests; diff --git a/crates/goose/tests/acp_custom_requests_test.rs b/crates/goose/tests/acp_custom_requests_test.rs index 5f1c126ab..10eb7294b 100644 --- a/crates/goose/tests/acp_custom_requests_test.rs +++ b/crates/goose/tests/acp_custom_requests_test.rs @@ -1,3 +1,4 @@ +#![recursion_limit = "256"] #[allow(dead_code)] #[path = "acp_common_tests/mod.rs"] mod common_tests; diff --git a/crates/goose/tests/acp_fork_session_test.rs b/crates/goose/tests/acp_fork_session_test.rs index 733cdb820..82c181991 100644 --- a/crates/goose/tests/acp_fork_session_test.rs +++ b/crates/goose/tests/acp_fork_session_test.rs @@ -1,3 +1,4 @@ +#![recursion_limit = "256"] #[allow(dead_code)] #[path = "acp_common_tests/mod.rs"] mod common_tests; diff --git a/crates/goose/tests/acp_secret_cache_invalidation_test.rs b/crates/goose/tests/acp_secret_cache_invalidation_test.rs index b5bcefa1b..a628c702d 100644 --- a/crates/goose/tests/acp_secret_cache_invalidation_test.rs +++ b/crates/goose/tests/acp_secret_cache_invalidation_test.rs @@ -1,3 +1,4 @@ +#![recursion_limit = "256"] #[allow(dead_code)] #[path = "acp_common_tests/mod.rs"] mod common_tests; diff --git a/crates/goose/tests/acp_server_test.rs b/crates/goose/tests/acp_server_test.rs index 3658c8805..e3dd70edb 100644 --- a/crates/goose/tests/acp_server_test.rs +++ b/crates/goose/tests/acp_server_test.rs @@ -1,3 +1,4 @@ +#![recursion_limit = "256"] #[allow(dead_code)] #[path = "acp_common_tests/mod.rs"] mod common_tests; diff --git a/crates/goose/tests/acp_transport_auth_test.rs b/crates/goose/tests/acp_transport_auth_test.rs index 8acd6be9d..822800199 100644 --- a/crates/goose/tests/acp_transport_auth_test.rs +++ b/crates/goose/tests/acp_transport_auth_test.rs @@ -1,3 +1,4 @@ +#![recursion_limit = "256"] use std::sync::Arc; use axum::body::Body;