From e4c53f1809aad9fedb174ee35f5b0c26d9f93f7e Mon Sep 17 00:00:00 2001 From: Pier-Jean Malandrino Date: Mon, 20 Apr 2026 10:26:05 +0200 Subject: [PATCH] test(chunking): add doc_items field to ChunkResult serialization test The `doc_items` field was added to `ChunkResult` earlier in the feature branch (used by ChunkWriter for DERIVED_FROM edges), but the test fixture was never updated. CI caught it now that the PR is open. Fixes: tests/test_chunking.py::TestChunkResult::test_serializable --- document-parser/tests/test_chunking.py | 1 + 1 file changed, 1 insertion(+) diff --git a/document-parser/tests/test_chunking.py b/document-parser/tests/test_chunking.py index 83e3a5e..552f71f 100644 --- a/document-parser/tests/test_chunking.py +++ b/document-parser/tests/test_chunking.py @@ -66,6 +66,7 @@ class TestChunkResult: "source_page": 1, "token_count": 10, "bboxes": [], + "doc_items": [], }