(self, url: str, **kwargs: Any)
| 784 | async def test_cloudflare_exec_client_error_includes_provider_context() -> None: |
| 785 | class _FailingHttp(_FakeHttp): |
| 786 | def post(self, url: str, **kwargs: Any) -> Any: |
| 787 | self._record("POST", url, **kwargs) |
| 788 | raise aiohttp.ClientError("connection reset") |
| 789 | |
| 790 | with pytest.raises(ExecTransportError) as exc_info: |
| 791 | await _make_session(fake_http=_FailingHttp())._exec_internal("echo", "hello", timeout=1.0) |