(self, *args, **kwargs)
| 166 | return None |
| 167 | |
| 168 | async def get(self, *args, **kwargs): |
| 169 | raise httpx.ConnectError('boom') |
| 170 | |
| 171 | monkeypatch.setattr(paper_search_module.httpx, 'AsyncClient', FailingAsyncClient) |
| 172 |
nothing calls this directly
no outgoing calls
no test coverage detected