From 4e732d0379da8cf3c32d8fc29df6b4b6d9ab48e6 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 7 Mar 2025 16:50:19 -0800 Subject: [PATCH] style: Apply linter formatting to test_reasoning.py --- tests/basic/test_reasoning.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/basic/test_reasoning.py b/tests/basic/test_reasoning.py index a79e0e067..a2e55327b 100644 --- a/tests/basic/test_reasoning.py +++ b/tests/basic/test_reasoning.py @@ -34,15 +34,15 @@ class TestReasoning(unittest.TestCase): # Call send with a simple message messages = [{"role": "user", "content": "test prompt"}] result = coder.send(messages) - + # Format the response as it would happen in the normal flow coder.partial_response_content = mock_completion.content coder.partial_response_reasoning_content = mock_completion.reasoning_content output = coder.get_multi_response_content_in_progress(final=True) - + # Manually call ai_output to simulate the normal flow coder.io.ai_output(output) - + # Now verify ai_output was called with the right content io.ai_output.assert_called_once() output = io.ai_output.call_args[0][0]