From 3e563365a2d6552f2d4c6d2d84006e7737c4c806 Mon Sep 17 00:00:00 2001 From: Brandon Hancock Date: Thu, 13 Mar 2025 10:32:07 -0400 Subject: [PATCH] fix failing tests --- tests/crew_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/crew_test.py b/tests/crew_test.py index e706f4875..e63b89b22 100644 --- a/tests/crew_test.py +++ b/tests/crew_test.py @@ -4114,6 +4114,7 @@ def test_crew_with_specific_delegation(): @pytest.mark.vcr(filter_headers=["authorization"]) def test_manager_agent_with_tools_and_delegation(): """Test that a manager agent can have tools and still delegate to all agents.""" + from crewai.tools.base_tool import BaseTool # Create a simple tool for the manager class SimpleTestTool(BaseTool):