Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
P. Taylor Goetz committed May 20, 2024
1 parent 6cc5838 commit d86b095
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/tests/unit_tests/agent_executor/test_parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def test_attempt_to_parse_each_fixture() -> None:
continue
seen_mimetypes.add(type_)
blob = Blob.from_path(path)
if not blob.mime_type:
blob.mime_type = type_
if not blob.mimetype:
blob.mimetype = type_
documents = MIMETYPE_BASED_PARSER.parse(blob)
try:
assert len(documents) == 1
Expand Down

0 comments on commit d86b095

Please sign in to comment.