()
| 19 | |
| 20 | @pytest.fixture |
| 21 | async def http_client() -> AsyncGenerator[HttpClient]: |
| 22 | async with HttpxHttpClient(http2=False) as client: |
| 23 | yield client |
| 24 | |
| 25 | |
| 26 | async def test_common_headers_and_user_agent(server_url: URL, header_network: dict) -> None: |
nothing calls this directly
no test coverage detected