| 670 | |
| 671 | def test_openreview_search_uses_submission_invitation_and_limit(monkeypatch): |
| 672 | class FakeNote: |
| 673 | def __init__(self): |
| 674 | self.id = "note_123" |
| 675 | self.cdate = 1710000000000 |
| 676 | self.content = { |
| 677 | "title": {"value": "OpenReview Test Paper"}, |
| 678 | "abstract": {"value": "Test abstract"}, |
| 679 | "authors": {"value": ["Alice", "Bob"]}, |
| 680 | } |
| 681 | |
| 682 | class FakeClient: |
| 683 | def __init__(self): |