Skip to content

Commit

Permalink
fix(graphs): make expection agnostic of zarr version
Browse files Browse the repository at this point in the history
  • Loading branch information
JPXKQX committed Feb 21, 2025
1 parent 505d084 commit 840aaef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphs/tests/nodes/test_zarr.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_init(mocker, mock_zarr_dataset):
def test_fail():
"""Test ZarrDatasetNodes with invalid dataset."""
node_builder = from_file.ZarrDatasetNodes("invalid_path.zarr", name="test_nodes")
with pytest.raises(zarr.errors.PathNotFoundError):
with pytest.raises(Exception):
node_builder.update_graph(HeteroData())


Expand Down

0 comments on commit 840aaef

Please sign in to comment.