Skip to content

Commit 547384b

Browse files
fixing unit test to be compatible with lance
1 parent 468f0bc commit 547384b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/test_parsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_txt_parser():
2727
content = parser.parse(file_path)
2828

2929
# Check that content was extracted correctly
30-
assert content == "This is sample text content for testing."
30+
assert content == [{"text": "This is sample text content for testing."}]
3131

3232
# Test saving content
3333
output_path = os.path.join(tempfile.gettempdir(), "output.txt")

0 commit comments

Comments
 (0)