Skip to content

Commit 124ab8f

Browse files
fix conftest fixture
1 parent 8e07e98 commit 124ab8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/tasks_v2/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ def _sample_plate_zarr_urls(
134134

135135
zarr_urls = []
136136
for image_path in plate.images_paths():
137-
base_url = plate._group_handler.store
138-
assert isinstance(base_url, Path)
139-
zarr_urls.append(str(base_url / image_path))
137+
base_url = plate._group_handler.full_url
138+
assert base_url is not None
139+
zarr_urls.append(f"{base_url}{image_path}")
140140
return zarr_urls
141141

142142

0 commit comments

Comments
 (0)