fix: Remove unsupported 'stream' parameter from InputOutput initialization in test

This commit is contained in:
Paul Gauthier (aider) 2025-03-07 16:49:17 -08:00
parent 068a0b4576
commit 1ab4bf14dc

View file

@ -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