From 13a0976bb6b0e0f29f1b3ccb164f929fee925a81 Mon Sep 17 00:00:00 2001 From: Yuneng Jiang Date: Fri, 28 Aug 2026 09:11:48 -0700 Subject: [PATCH] test(passthrough): name the test for what it now covers The target is a local server, so the OpenAI host check already excludes it and the docstring's claim about the route path no longer holds. --- .../test_custom_logger_passthrough.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pass_through_unit_tests/test_custom_logger_passthrough.py b/tests/pass_through_unit_tests/test_custom_logger_passthrough.py index a7d6378fa18..70fc8f9ccf2 100644 --- a/tests/pass_through_unit_tests/test_custom_logger_passthrough.py +++ b/tests/pass_through_unit_tests/test_custom_logger_passthrough.py @@ -74,9 +74,9 @@ def upstream(): @pytest.mark.asyncio -async def test_untracked_openai_route_passthrough_logging(upstream): - """Keep this on a route `_is_supported_openai_endpoint` does not claim, or the - OpenAI-specific handler takes over and the generic payload stops being exercised.""" +async def test_passthrough_logging_payload_for_a_route_no_provider_handler_claims( + upstream, +): base_url, upstream_received = upstream test_custom_logger = TestCustomLogger()