()
| 3009 | |
| 3010 | |
| 3011 | async def test_request_conn_error() -> None: |
| 3012 | client = aiohttp.ClientSession() |
| 3013 | with pytest.raises(aiohttp.ClientConnectionError): |
| 3014 | await client.get("http://0.0.0.0:1") |
| 3015 | await client.close() |
| 3016 | |
| 3017 | |
| 3018 | @pytest.mark.xfail |