diff --git a/scripts/test_wp26_comprehensive.py b/scripts/test_wp26_comprehensive.py index 384f924..b6b83b3 100644 --- a/scripts/test_wp26_comprehensive.py +++ b/scripts/test_wp26_comprehensive.py @@ -172,10 +172,11 @@ Text. chunks = strategy_by_heading(blocks, config, note_id="test-note") # Erstelle Payloads + # Signatur: make_chunk_payloads(note, note_path, chunks_from_chunker, **kwargs) payloads = make_chunk_payloads( - frontmatter={"type": "experience"}, + note={"frontmatter": {"type": "experience"}}, note_path="test.md", - chunks=chunks, + chunks_from_chunker=chunks, file_path="test.md", types_cfg={} ) @@ -224,10 +225,11 @@ Text. } chunks = strategy_by_heading(blocks, config, note_id="test-note") + # Signatur: make_chunk_payloads(note, note_path, chunks_from_chunker, **kwargs) payloads = make_chunk_payloads( - frontmatter={"type": "experience"}, + note={"frontmatter": {"type": "experience"}}, note_path="test.md", - chunks=chunks, + chunks_from_chunker=chunks, file_path="test.md", types_cfg={} )