From ad89cbb24f625a642faa8f791571238849c809a8 Mon Sep 17 00:00:00 2001 From: axelray-dev <110029405+axelray-dev@users.noreply.github.com> Date: Sun, 14 Jun 2026 04:57:54 +0800 Subject: [PATCH] test(providers): use real Fable model ID claude-fable-5 in tests Replace placeholder claude-fable-1 with the actual API model ID. --- tests/providers/test_anthropic_thinking.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/providers/test_anthropic_thinking.py b/tests/providers/test_anthropic_thinking.py index 12de5284..547a4817 100644 --- a/tests/providers/test_anthropic_thinking.py +++ b/tests/providers/test_anthropic_thinking.py @@ -101,17 +101,17 @@ def test_opus_4_8_omits_temperature_none() -> None: def test_fable_omits_temperature_adaptive() -> None: - kw = _build(_make_provider("claude-fable-1"), "adaptive") + kw = _build(_make_provider("claude-fable-5"), "adaptive") assert "temperature" not in kw def test_fable_omits_temperature_enabled() -> None: - kw = _build(_make_provider("claude-fable-1"), "high", max_tokens=4096) + kw = _build(_make_provider("claude-fable-5"), "high", max_tokens=4096) assert "temperature" not in kw def test_fable_omits_temperature_none() -> None: - kw = _build(_make_provider("claude-fable-1"), None) + kw = _build(_make_provider("claude-fable-5"), None) assert "temperature" not in kw