We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e07e98 commit 124ab8fCopy full SHA for 124ab8f
tests/tasks_v2/conftest.py
@@ -134,9 +134,9 @@ def _sample_plate_zarr_urls(
134
135
zarr_urls = []
136
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))
+ base_url = plate._group_handler.full_url
+ assert base_url is not None
+ zarr_urls.append(f"{base_url}{image_path}")
140
return zarr_urls
141
142
0 commit comments