Skip to content

Commit

Permalink
fix white space in path
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzocerrone committed Sep 20, 2024
1 parent ebd378e commit eccb93a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/core/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ def ome_zarr_image_v04_path(tmpdir):

group = zarr.open_group(store=zarr_path, mode="w", zarr_format=2)

json_path = Path("tests") / "data" / " meta_v04" / " base_ome_zarr_image_meta.json"
json_path = (
Path(".") / "tests" / "data" / "meta_v04" / "base_ome_zarr_image_meta.json"
)
with open(json_path) as f:
base_ome_zarr_meta = json.load(f)

Expand Down

0 comments on commit eccb93a

Please sign in to comment.