mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
test(proxy): assert empty tuple from get_agent_list() after clear
PR #36020 changed AgentRegistry.get_agent_list() to return tuple[AgentResponse, ...] but this test still compared against [] so the empty-agents-key clears-remembered-agents case has been failing on litellm_internal_staging since that landed. Co-authored-by: Krrish Dholakia <krrish-berri-2@users.noreply.github.com>
This commit is contained in:
parent
90f8e1f472
commit
4e86ea554e
1 changed files with 1 additions and 1 deletions
|
|
@ -2638,4 +2638,4 @@ async def test_ProxyConfig__init_non_llm_configs_empty_agents_key_clears_remembe
|
|||
|
||||
assert clean_agent_registry.config_agents == ()
|
||||
clean_agent_registry.load_agents_from_db_and_config(db_agents=None)
|
||||
assert clean_agent_registry.get_agent_list() == []
|
||||
assert clean_agent_registry.get_agent_list() == ()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue