Fix code formatting in test_client.py

Add blank lines after docstrings in MockTransport elapsed tests
to comply with Ruff formatting rules.
This commit is contained in:
Varun Chawla 2026-02-07 18:41:59 -08:00
parent 50c162cfb4
commit 324e16aab8
No known key found for this signature in database

View File

@ -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!"})