diff --git a/setup.cfg b/setup.cfg index 16187a1..2a8441a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -35,7 +35,7 @@ install_requires = magicgui qtpy scikit-image - fractal-tasks-core==1.0.2 + fractal-tasks-core==1.3.2 napari-ome-zarr ome-zarr wget diff --git a/src/napari_ome_zarr_navigator/_tests/test_OMEZarrImage.py b/src/napari_ome_zarr_navigator/_tests/test_OMEZarrImage.py index 9380706..c3194e2 100644 --- a/src/napari_ome_zarr_navigator/_tests/test_OMEZarrImage.py +++ b/src/napari_ome_zarr_navigator/_tests/test_OMEZarrImage.py @@ -102,7 +102,7 @@ def test_wrong_zarr_urls(zenodo_zarr): OMEZarrImage(zarr_but_not_image) assert expected_error in str(exc_info.value) assert "multiscales" in str(exc_info.value) - assert "field required" in str(exc_info.value) + assert "Field required" in str(exc_info.value) def test_roi_loading_from_indices(ome_zarr_image_2d):