diff --git a/anndata/tests/test_readwrite.py b/anndata/tests/test_readwrite.py index 67341fe57..4b59791fd 100644 --- a/anndata/tests/test_readwrite.py +++ b/anndata/tests/test_readwrite.py @@ -526,15 +526,9 @@ def hash_dir_contents(dir: Path) -> dict[str, bytes]: marks=pytest.mark.xfail(reason="Loom can’t handle 0×0 matrices"), ), pytest.param(ad.read_zarr, ad._io.write_zarr, "test_empty.zarr"), - pytest.param( - ad.read_zarr, - ad._io.write_zarr, - "test_empty.zip", - marks=pytest.mark.xfail(reason="Zarr zip storage doesn’t seem to work…"), - ), ], ) -def test_readwrite_hdf5_empty(read, write, name, tmp_path): +def test_readwrite_empty(read, write, name, tmp_path): adata = ad.AnnData(uns=dict(empty=np.array([], dtype=float))) write(tmp_path / name, adata) ad_read = read(tmp_path / name)