From 324e16aab8289b3af001a2217ccfd54d0350e7fb Mon Sep 17 00:00:00 2001 From: Varun Chawla Date: Sat, 7 Feb 2026 18:41:59 -0800 Subject: [PATCH] Fix code formatting in test_client.py Add blank lines after docstrings in MockTransport elapsed tests to comply with Ruff formatting rules. --- tests/client/test_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/client/test_client.py b/tests/client/test_client.py index 535c741f..90afc7bf 100644 --- a/tests/client/test_client.py +++ b/tests/client/test_client.py @@ -467,6 +467,7 @@ def test_mock_transport_elapsed(): Regression test for https://github.com/encode/httpx/issues/3712 """ + def handler(request): return httpx.Response(200, json={"text": "Hello, world!"}) @@ -486,6 +487,7 @@ async def test_async_mock_transport_elapsed(): Regression test for https://github.com/encode/httpx/issues/3712 """ + def handler(request): return httpx.Response(200, json={"text": "Hello, world!"})