Skip to content

Commit db00534

Browse files
committed
✨Add support for new filetypes
1 parent 2a84e1a commit db00534

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/sdk/data_process/test_unstructured_processor.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,11 @@ def test_get_supported_formats(self, processor):
401401
assert ".odt" in result
402402
assert ".pptx" in result
403403
assert ".ppt" in result
404-
assert len(result) == 11
404+
assert ".json" in result
405+
assert ".csv" in result
406+
assert ".xml" in result
407+
assert ".epub" in result
408+
assert len(result) == 15
405409

406410
@pytest.mark.parametrize(
407411
"filename,expected",

0 commit comments

Comments
 (0)