From 5ba4143f5f0c4b9bff4b17d25e26b071f3c3447f Mon Sep 17 00:00:00 2001 From: Alex Hancock Date: Fri, 26 Sep 2025 11:19:30 -0400 Subject: [PATCH] chore: fix all warnings in test compilation (#4827) --- crates/goose/tests/agent.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/crates/goose/tests/agent.rs b/crates/goose/tests/agent.rs index 2dc81680..6f551d5c 100644 --- a/crates/goose/tests/agent.rs +++ b/crates/goose/tests/agent.rs @@ -235,6 +235,16 @@ mod tests { .await } + #[tokio::test] + async fn test_agent_with_anthropic() -> Result<()> { + run_test_with_config(TestConfig { + provider_type: ProviderType::Anthropic, + model: "claude-sonnet-4", + context_window: 200_000, + }) + .await + } + #[tokio::test] async fn test_agent_with_azure() -> Result<()> { run_test_with_config(TestConfig {