From 35ae1ca151643af4c9bc84b649fba7df5d3f7674 Mon Sep 17 00:00:00 2001 From: yassin Date: Sat, 5 Sep 2026 01:01:41 +0000 Subject: [PATCH] test(cli): drop redundant comment in pi arg ordering test Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- tests/test_litellm/proxy/client/cli/test_agents.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_litellm/proxy/client/cli/test_agents.py b/tests/test_litellm/proxy/client/cli/test_agents.py index a64adffb3a1..a8a6659fe9a 100644 --- a/tests/test_litellm/proxy/client/cli/test_agents.py +++ b/tests/test_litellm/proxy/client/cli/test_agents.py @@ -582,7 +582,6 @@ class TestRunAgent: launcher=lambda p, a, e: calls.update(args=tuple(a), env=dict(e)), preparers={"pi": lambda *a: ["--model", "litellm/m-1"]}, ) - # user args come last so a user-supplied --model wins in pi's parser assert calls["args"] == ("pi", "--model", "litellm/m-1", "-p", "hello") assert calls["env"]["LITELLM_PROXY_API_KEY"] == "sk-key" assert "OPENAI_API_KEY" not in calls["env"]