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;