From daa01686f225256f2d26ed28808c767e7cccd441 Mon Sep 17 00:00:00 2001 From: Brandon Hancock Date: Tue, 21 Jan 2025 19:12:29 -0500 Subject: [PATCH] mnore clean up --- tests/agent_test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/agent_test.py b/tests/agent_test.py index 6b32ba495..73ce69737 100644 --- a/tests/agent_test.py +++ b/tests/agent_test.py @@ -670,7 +670,6 @@ def test_agent_without_max_rpm_respects_crew_rpm(capsys): 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 test_agent_error_on_parsing_tool(capsys): 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