Skip to content

Commit

Permalink
put test_store.zarr in tmp_path
Browse files Browse the repository at this point in the history
  • Loading branch information
talonchandler committed Jan 8, 2025
1 parent 6c70732 commit 48de091
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recOrder/tests/util_tests/test_create_empty.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from recOrder.cli.utils import create_empty_hcs_zarr


def test_create_empty_hcs_zarr():
store_path = Path("test_store.zarr")
def test_create_empty_hcs_zarr(tmp_path):
store_path = tmp_path / Path("test_store.zarr")
position_keys: list[tuple[str]] = [
("A", "0", "3"),
("B", "10", "4"),
Expand Down

0 comments on commit 48de091

Please sign in to comment.