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 3ecba8f commit fcae2b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/tests/unit_tests/agent_executor/test_parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_attempt_to_parse_each_fixture() -> None:
"""Attempt to parse supported fixtures."""
seen_mimetypes = set()
for path in get_sample_paths():
type_, _ = _guess_mimetype(path.name, path.read_bytes())
type_, _ = _guess_mimetype(path.name, b"")
if type_ not in SUPPORTED_MIMETYPES:
continue
seen_mimetypes.add(type_)
Expand Down

0 comments on commit fcae2b1

Please sign in to comment.