mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-22 21:34:59 +00:00
fix: Remove unused 'result' variable in test_reasoning.py
This commit is contained in:
parent
4e732d0379
commit
f613ad6c05
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue