From 1ab4bf14dc0ffd0ce4650e366345635bac60dc32 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 7 Mar 2025 16:49:17 -0800 Subject: [PATCH] fix: Remove unsupported 'stream' parameter from InputOutput initialization in test --- tests/basic/test_reasoning.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/basic/test_reasoning.py b/tests/basic/test_reasoning.py index 7ec70717c..70fc635da 100644 --- a/tests/basic/test_reasoning.py +++ b/tests/basic/test_reasoning.py @@ -9,8 +9,8 @@ from aider.models import Model class TestReasoning(unittest.TestCase): def test_send_with_reasoning_content(self): """Test that reasoning content is properly formatted and output.""" - # Setup IO with no streaming, no pretty - io = InputOutput(pretty=False, stream=False) + # Setup IO with no pretty + io = InputOutput(pretty=False) io.ai_output = MagicMock() # Setup model and coder