test: fix assertion errors in sendchat retry tests

This commit is contained in:
Paul Gauthier 2024-10-28 15:07:11 -07:00 committed by Paul Gauthier (aider)
parent bc515cf74a
commit a819bf1d64

View file

@ -6,6 +6,9 @@ import httpx
from aider.llm import litellm
from aider.sendchat import retry_exceptions, simple_send_with_retries
# ai: fix these test errors!
FAILED tests/basic/test_sendchat.py::TestSendChat::test_simple_send_with_retries_connection_error - AssertionError: Expected 'print' to have been called once. Called 2 times.
FAILED tests/basic/test_sendchat.py::TestSendChat::test_simple_send_with_retries_rate_limit_error - AssertionError: Expected 'print' to have been called once. Called 2 times.
class PrintCalled(Exception):
pass