Skip to content

Commit 7bd274b

Browse files
authored
chore: fix invalid test filenames (#431)
Signed-off-by: Panos Vagenas <[email protected]>
1 parent 6d48bf5 commit 7bd274b

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

test/test_docling_doc.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1831,7 +1831,7 @@ def _verify(
18311831
doc.insert_key_values(sibling=node, graph=graph, after=False)
18321832
doc.insert_form(sibling=node, graph=graph, after=True)
18331833

1834-
filename = Path("test/data/doc/constructed_doc.inserted_items_with_insert_*.json")
1834+
filename = Path("test/data/doc/constructed_doc.inserted_items.json")
18351835
_verify(filename=filename, document=doc, generate=GEN_TEST_DATA)
18361836

18371837
# Test the handling of list items in insert_* methods, both with and without parent groups
@@ -1857,9 +1857,7 @@ def _verify(
18571857
after=True,
18581858
)
18591859

1860-
filename = Path(
1861-
"test/data/doc/constructed_doc.inserted_list_items_with_insert_*.json"
1862-
)
1860+
filename = Path("test/data/doc/constructed_doc.inserted_list_items.json")
18631861
_verify(filename=filename, document=doc, generate=GEN_TEST_DATA)
18641862

18651863
# Test the bulk addition of node items

0 commit comments

Comments
 (0)