(custom_http_client: HttpClient)
| 52 | indirect=['custom_http_client'], |
| 53 | ) |
| 54 | async def test_http_2(custom_http_client: HttpClient) -> None: |
| 55 | response = await custom_http_client.send_request('https://apify.com/') |
| 56 | assert response.http_version == 'HTTP/2' |
| 57 | |
| 58 | |
| 59 | @pytest.mark.skipif(os.name == 'nt', reason='Skipped on Windows') |
nothing calls this directly
no test coverage detected