From 5b600a4a1194bb4a51d34a4994adc4412bff05d3 Mon Sep 17 00:00:00 2001 From: scawful Date: Tue, 30 Dec 2025 16:16:54 -0500 Subject: [PATCH] test: fix resource index expectations --- tests/test_resource_index.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_resource_index.py b/tests/test_resource_index.py index d045dc8..ab43982 100644 --- a/tests/test_resource_index.py +++ b/tests/test_resource_index.py @@ -23,5 +23,5 @@ def test_resource_indexer_dedupes(tmp_path: Path) -> None: result = indexer.build_index() assert result.total_files == 2 assert result.duplicates_found == 1 - assert result.by_type.get("txt", 0) == 1 - assert result.by_type.get("md", 0) == 1 + assert result.by_type.get("text", 0) == 1 + assert result.by_type.get("markdown", 0) == 1