summaryrefslogtreecommitdiff
path: root/tests/test_contributions_api.py
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-04-11 18:54:01 -0500
committerChristian Cleberg <[email protected]>2026-04-11 18:54:01 -0500
commit90e61ed3e8e765ff5557bc59a6a7b141124dba01 (patch)
tree8d76a215116c7f8ae9c31170c03226af6bccf225 /tests/test_contributions_api.py
parent01c1b50541b0dc1d42cbdaa90052f6b94ceba20c (diff)
downloadhutch-stats-90e61ed3e8e765ff5557bc59a6a7b141124dba01.tar.gz
hutch-stats-90e61ed3e8e765ff5557bc59a6a7b141124dba01.tar.bz2
hutch-stats-90e61ed3e8e765ff5557bc59a6a7b141124dba01.zip
refactor: retain and backfill only the last year of activity
Diffstat (limited to 'tests/test_contributions_api.py')
-rw-r--r--tests/test_contributions_api.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_contributions_api.py b/tests/test_contributions_api.py
index 15af7d8..e568feb 100644
--- a/tests/test_contributions_api.py
+++ b/tests/test_contributions_api.py
@@ -68,9 +68,6 @@ def test_public_read_registers_actor_for_lazy_indexing(client: TestClient, db_se
assert response.json()["is_recent_window_backfilled"] is False
assert response.json()["recent_backfill_state"] == "pending"
assert response.json()["recent_backfill_completed_at"] is None
- assert response.json()["is_backfilled"] is False
- assert response.json()["backfill_state"] == "pending"
- assert response.json()["backfill_completed_at"] is None
assert response.json()["last_polled_at"] is None
assert tracked_actor is not None
assert tracked_actor.is_active is True
@@ -117,7 +114,6 @@ def test_contribution_stats_api(client: TestClient, db_session) -> None:
assert response.json()["indexing_state"] == "indexed"
assert response.json()["is_recent_window_backfilled"] is False
assert response.json()["recent_backfill_state"] == "pending"
- assert response.json()["is_backfilled"] is False
def test_invalid_date_input_returns_400(client: TestClient) -> None: