From ef2529e50d70a82fd12310ece699407458fad2f6 Mon Sep 17 00:00:00 2001 From: Peter Staar Date: Tue, 29 Oct 2024 07:38:40 +0100 Subject: [PATCH] fixed the tests Signed-off-by: Peter Staar --- tests/test_legacy_format_transform.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_legacy_format_transform.py b/tests/test_legacy_format_transform.py index 4f764542..28800edd 100644 --- a/tests/test_legacy_format_transform.py +++ b/tests/test_legacy_format_transform.py @@ -11,10 +11,10 @@ from docling.document_converter import DocumentConverter, PdfFormatOption @pytest.fixture def test_doc_paths(): return [ - Path("tests/data/wiki_duck.html"), - Path("tests/data/word_sample.docx"), - Path("tests/data/lorem_ipsum.docx"), - Path("tests/data/powerpoint_sample.pptx"), + Path("tests/data/html/wiki_duck.html"), + Path("tests/data/docx/word_sample.docx"), + Path("tests/data/docx/lorem_ipsum.docx"), + Path("tests/data/pptx/powerpoint_sample.pptx"), Path("tests/data/2305.03393v1-pg9-img.png"), Path("tests/data/2206.01062.pdf"), ]