(url, **kwargs)
| 462 | """ |
| 463 | |
| 464 | def fake_http_get(url, **kwargs): |
| 465 | captured["url"] = url |
| 466 | captured.update(kwargs) |
| 467 | return FakeResponse() |
| 468 | |
| 469 | monkeypatch.setattr(journal_fetcher, "_http_get", fake_http_get) |
| 470 |
nothing calls this directly
no test coverage detected