fix tests

This commit is contained in:
Brandon Hancock
2025-03-14 09:35:13 -04:00
parent 0a6098fb50
commit 4b6498de8b
2 changed files with 2 additions and 1 deletions

View File

@@ -1597,7 +1597,7 @@ def test_crew_function_calling_llm():
result = crew.kickoff()
assert result.raw == "Howdy!"
assert agent1.tools is not None
assert len(agent1.tools) == 0
assert len(agent1.tools) == 1
@pytest.mark.vcr(filter_headers=["authorization"])