(http_client: HttpClient, server_url: URL)
| 38 | |
| 39 | |
| 40 | async def test_http_1(http_client: HttpClient, server_url: URL) -> None: |
| 41 | response = await http_client.send_request(str(server_url)) |
| 42 | assert response.http_version == 'HTTP/1.1' |
| 43 | |
| 44 | |
| 45 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected