Skip to content

Commit

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

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

with open("tests/data/meta_v04/base_ome_zarr_image_meta.json") as f:
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)

base_ome_zarr_meta = base_ome_zarr_meta
Expand Down

0 comments on commit ebd378e

Please sign in to comment.