From de666be70de48d95915443a1d47b6b6bb843f5dc Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Fri, 23 May 2025 15:40:03 -0400 Subject: [PATCH] Update test_openapi.py --- tests/client/test_openapi.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/client/test_openapi.py b/tests/client/test_openapi.py index 5ee33ce7e..903582f59 100644 --- a/tests/client/test_openapi.py +++ b/tests/client/test_openapi.py @@ -181,6 +181,9 @@ class TestClientHeaders: assert headers["x-server"] == "test-abc" async def test_client_headers_proxy(self, proxy_server: str): + """ + Test that client headers are passed through the proxy to the remove server. + """ async with Client(transport=StreamableHttpTransport(proxy_server)) as client: await client.ping() result = await client.read_resource("resource://get_headers_headers_get")