fix: Remove unused 'result' variable in test_reasoning.py

This commit is contained in:
Paul Gauthier (aider) 2025-03-07 16:50:36 -08:00
parent 4e732d0379
commit f613ad6c05

View file

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