fix(tests): fix mock _perform_health_check returning 2-tuple instead of 3

This commit is contained in:
Sameer Kankute 2026-04-02 21:25:09 +05:30
parent 76f80792c1
commit e45baa6339
No known key found for this signature in database

View file

@ -475,7 +475,7 @@ async def test_perform_health_check_filters_by_model_id():
captured_list.append(m_list)
return [
{"model": "gpt-4", "api_key": m_list[0]["litellm_params"]["api_key"]}
], []
], [], {}
with patch(
"litellm.proxy.health_check._perform_health_check",