From bac482df581d2495d609a95b836f500ba2305c52 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 12 Sep 2026 04:37:16 +0000 Subject: [PATCH] test: drop the restating docstring on the readiness reason test --- .../proxy/health_endpoints/test_health_endpoints.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_litellm/proxy/health_endpoints/test_health_endpoints.py b/tests/test_litellm/proxy/health_endpoints/test_health_endpoints.py index 40c69a2989b..1bfc3ad4fcb 100644 --- a/tests/test_litellm/proxy/health_endpoints/test_health_endpoints.py +++ b/tests/test_litellm/proxy/health_endpoints/test_health_endpoints.py @@ -1374,11 +1374,6 @@ def test_health_readiness_details_reports_env_credential_login_warning(monkeypat def test_health_readiness_details_reports_insecure_master_key_reason( monkeypatch, master_key, general_settings, expected_reason ): - """ - The Admin UI banner is driven by this field: it must be "example_key" while - the docs example key is configured, "missing" when no master key is set and - no alternative auth replaces it, and null when the configured key is strong. - """ app = FastAPI() app.include_router(_health_endpoints_module.router) app.dependency_overrides[user_api_key_auth] = lambda: UserAPIKeyAuth(user_role=LitellmUserRoles.PROXY_ADMIN)