Skip to content

Commit 25bb2d1

Browse files
fix: correct element type assertion from NarrativeText to UncategorizedText in test
Co-Authored-By: Ryan Waskewich <ryan.waskewich@airbyte.io>
1 parent eecb6c2 commit 25bb2d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

unit_tests/sources/file_based/file_types/test_unstructured_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ def test_parse_records_markdown_json_local(
752752
assert len(content) == 4
753753
assert content[0]["type"] == "Title"
754754
assert content[0]["text"] == "heading"
755-
assert content[1]["type"] == "NarrativeText"
755+
assert content[1]["type"] == "UncategorizedText"
756756
assert content[1]["text"] == "This is the text"
757757
assert content[2]["type"] == "ListItem"
758758
assert content[2]["text"] == "This is a list item"

0 commit comments

Comments
 (0)