From 76d7c30f30482ae8c04e57c358a74319626eb3cd Mon Sep 17 00:00:00 2001 From: kotaro-kinoshita Date: Mon, 30 Dec 2024 20:35:43 +0900 Subject: [PATCH] fix unittest --- tests/test_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_export.py b/tests/test_export.py index 4032960..ff4658f 100644 --- a/tests/test_export.py +++ b/tests/test_export.py @@ -583,7 +583,7 @@ def test_export(tmp_path): with open(out_path, "r") as f: assert json.load(f) == document_analyzer.model_dump() - document_analyzer.to_csv(tmp_path / "document_analyzer.csv") + document_analyzer.to_csv(tmp_path / "document_analyzer.csv", img=img) document_analyzer.to_html(tmp_path / "document_analyzer.html", img=img) document_analyzer.to_markdown(tmp_path / "document_analyzer.md", img=img)