From f613ad6c05ef2cf7d3eb69e80c031e848c6c1927 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 7 Mar 2025 16:50:36 -0800 Subject: [PATCH] fix: Remove unused 'result' variable in test_reasoning.py --- tests/basic/test_reasoning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic/test_reasoning.py b/tests/basic/test_reasoning.py index a2e55327b..555c05b9a 100644 --- a/tests/basic/test_reasoning.py +++ b/tests/basic/test_reasoning.py @@ -33,7 +33,7 @@ class TestReasoning(unittest.TestCase): with patch.object(model, "send_completion", return_value=mock_completion): # Call send with a simple message messages = [{"role": "user", "content": "test prompt"}] - result = coder.send(messages) + coder.send(messages) # Format the response as it would happen in the normal flow coder.partial_response_content = mock_completion.content