mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 06:15:00 +00:00
fix: Remove unsupported 'stream' parameter from InputOutput initialization in test
This commit is contained in:
parent
068a0b4576
commit
1ab4bf14dc
1 changed files with 2 additions and 2 deletions
|
@ -9,8 +9,8 @@ from aider.models import Model
|
||||||
class TestReasoning(unittest.TestCase):
|
class TestReasoning(unittest.TestCase):
|
||||||
def test_send_with_reasoning_content(self):
|
def test_send_with_reasoning_content(self):
|
||||||
"""Test that reasoning content is properly formatted and output."""
|
"""Test that reasoning content is properly formatted and output."""
|
||||||
# Setup IO with no streaming, no pretty
|
# Setup IO with no pretty
|
||||||
io = InputOutput(pretty=False, stream=False)
|
io = InputOutput(pretty=False)
|
||||||
io.ai_output = MagicMock()
|
io.ai_output = MagicMock()
|
||||||
|
|
||||||
# Setup model and coder
|
# Setup model and coder
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue