mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-23 05:45:00 +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):
|
with patch.object(model, "send_completion", return_value=mock_completion):
|
||||||
# Call send with a simple message
|
# Call send with a simple message
|
||||||
messages = [{"role": "user", "content": "test prompt"}]
|
messages = [{"role": "user", "content": "test prompt"}]
|
||||||
result = coder.send(messages)
|
coder.send(messages)
|
||||||
|
|
||||||
# Format the response as it would happen in the normal flow
|
# Format the response as it would happen in the normal flow
|
||||||
coder.partial_response_content = mock_completion.content
|
coder.partial_response_content = mock_completion.content
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue