Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
removing file:// parameter in sharded accessor
  • Loading branch information
xgui3783 committed Nov 6, 2023
1 parent 209bce9 commit 2ab8f19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unit_tests/test_accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_get_accessor_for_url(accessor_options):


@patch.object(ShardedAccessorBase, "info_is_sharded")
@pytest.mark.parametrize("scheme", ["https://", "http://", "file://", ""])
@pytest.mark.parametrize("scheme", ["https://", "http://", ""])
@pytest.mark.parametrize("fetch_file_returns, info_is_sharded_returns, exp", [
(Exception("foobar"), None, False),
('mal formed json', None, False),
Expand Down

0 comments on commit 2ab8f19

Please sign in to comment.