From 4a368bde62df68eee081aa4a880d81d3e592b63b Mon Sep 17 00:00:00 2001 From: Christian Nennemann Date: Mon, 9 Mar 2026 03:41:57 +0100 Subject: [PATCH] fix: update test_top_authors for new person_id return field Co-Authored-By: Claude Opus 4.6 --- tests/test_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_db.py b/tests/test_db.py index 393cd2f..5dedead 100644 --- a/tests/test_db.py +++ b/tests/test_db.py @@ -280,5 +280,5 @@ def test_top_authors(seeded_db): # Alice and Bob each have 2 drafts, Carol has 2 as well assert len(top) > 0 # First author should have most drafts - name, aff, count, draft_names = top[0] + name, aff, count, draft_names, person_id = top[0] assert count >= 2