From 113f7748b79a0b0ac060d331dec727adf0c04e55 Mon Sep 17 00:00:00 2001 From: Hew Li Yang Date: Tue, 17 Dec 2024 21:38:40 +0800 Subject: [PATCH] chore: simplify xlsx tests --- tests/test_markitdown.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_markitdown.py b/tests/test_markitdown.py index aeba9b4..a7c3064 100644 --- a/tests/test_markitdown.py +++ b/tests/test_markitdown.py @@ -148,8 +148,8 @@ def test_markitdown_local() -> None: assert test_string in text_content # Check negations - assert "Unnamed:" not in result.text_content - assert "NaN" not in result.text_content + assert "Unnamed:" not in text_content + assert "NaN" not in text_content # Test DOCX processing result = markitdown.convert(os.path.join(TEST_FILES_DIR, "test.docx"))