fix: remove unused agent arg from App.poll

This commit is contained in:
lda
2026-09-01 03:09:38 +07:00 Verified
parent e6071994c7
commit 921735dbcb
3 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ def test_app_facade_with_memory():
t = app.create_thread(alice, bob)
app.append(t.id, alice, "hello")
assert app.has_unread(t.id, bob) is True
msgs = app.poll(t.id, bob)
msgs = app.poll(t.id)
assert len(msgs) == 1
app.mark_read(t.id, bob, msgs[0].seq)
assert app.has_unread(t.id, bob) is False