diff --git a/tests/agent_test.py b/tests/agent_test.py index 6b32ba4953..73ce697378 100644 --- a/tests/agent_test.py +++ b/tests/agent_test.py @@ -670,7 +670,6 @@ def get_final_answer() -> float: moveon.assert_called_once() -# @pytest.mark.vcr(filter_headers=["authorization"]) def test_agent_error_on_parsing_tool(capsys): from unittest.mock import patch @@ -710,7 +709,6 @@ def get_final_answer() -> float: force_exception_2.side_effect = Exception("Error on parsing tool.") crew.kickoff() captured = capsys.readouterr() - print("Captured output:", captured.out) assert "Error on parsing tool." in captured.out