diff --git a/lib/crewai/tests/agents/test_agent.py b/lib/crewai/tests/agents/test_agent.py index 32130f900..3e922edc9 100644 --- a/lib/crewai/tests/agents/test_agent.py +++ b/lib/crewai/tests/agents/test_agent.py @@ -1454,7 +1454,7 @@ def test_agent_execute_task_with_tool(): ) result = agent.execute_task(task) - assert "you should always think about what to do" in result + assert "test query" in result @pytest.mark.vcr() @@ -1473,9 +1473,9 @@ def test_agent_execute_task_with_custom_llm(): ) result = agent.execute_task(task) - assert "In circuits they thrive" in result - assert "Artificial minds awake" in result - assert "Future's coded drive" in result + assert "Artificial minds" in result + assert "Code and circuits" in result + assert "Future undefined" in result @pytest.mark.vcr()