Skip to content

Commit

Permalink
Merge pull request #440 from niaid/fix/mock_rechunk
Browse files Browse the repository at this point in the history
Fix mock rechunk
  • Loading branch information
philipmac authored Jan 31, 2024
2 parents e9d46c3 + 51511aa commit 08714e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def _mock_rechunk(file_path: FilePath, *a, **kw):
shutil.copytree(zarr_fp, work_fp)
print("No need to rechunk!")
return
original_rechunk(zarr_fp, *a, **kw)
original_rechunk(file_path, *a, **kw)

monkeypatch.setattr(ng, "bioformats_gen_zarr", _mock_bioformats_gen_zarr)
monkeypatch.setattr(ng, "rechunk_zarr", _mock_rechunk)
Expand Down

0 comments on commit 08714e0

Please sign in to comment.