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"))