diff --git a/tests/utilities/evaluators/test_custom_llm_support.py b/tests/utilities/evaluators/test_custom_llm_support.py index e5ec9d022..6d441c3f5 100644 --- a/tests/utilities/evaluators/test_custom_llm_support.py +++ b/tests/utilities/evaluators/test_custom_llm_support.py @@ -17,6 +17,7 @@ def test_crew_test_with_custom_llm(): ) task = Task( description="test", + expected_output="test output", agent=agent, ) crew = Crew(agents=[agent], tasks=[task]) @@ -45,6 +46,7 @@ def test_crew_evaluator_with_custom_llm(): ) task = Task( description="test", + expected_output="test output", agent=agent, ) crew = Crew(agents=[agent], tasks=[task])