test(providers): use real Fable model ID claude-fable-5 in tests

Replace placeholder claude-fable-1 with the actual API model ID.
This commit is contained in:
axelray-dev
2026-06-14 12:52:07 +08:00
committed by Xubin Ren
parent 29d7186853
commit ad89cbb24f
+3 -3
View File
@@ -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