fix: remove deprecated timestamped model from test

The model that this test uses is no longer available online. [1] [2]

Per the upstream commit, claude-sonnet-4-6 is a suitable replacement
so use that instead.

[1]: https://github.com/BerriAI/litellm/pull/23400

[2]: c9f7075690
This commit is contained in:
Claudia Pellegrino
2026-03-16 22:38:01 +01:00
parent c0ab75371b
commit c0839cf36f

View File

@@ -536,7 +536,7 @@ class TestCommands(TestCase):
io = InputOutput(pretty=False, fancy_input=False, yes=False)
from aider.coders import Coder
coder = Coder.create(Model("claude-3-5-sonnet-20240620"), None, io)
coder = Coder.create(Model("claude-sonnet-4-6"), None, io)
print(coder.get_announcements())
commands = Commands(io, coder)