(url, timeout=60)
| 187 | """ |
| 188 | |
| 189 | def fake_get(url, timeout=60): |
| 190 | if url.endswith("/CVPR2025?day=all"): |
| 191 | return FakeResponse(index_html) |
| 192 | if url.endswith("Example_Paper_CVPR_2025_paper.html"): |
| 193 | return FakeResponse(detail_html) |
| 194 | raise AssertionError(f"Unexpected URL: {url}") |
| 195 | |
| 196 | monkeypatch.setattr(openreview_fetcher.requests, "get", fake_get) |
| 197 |
nothing calls this directly
no test coverage detected