Skip to content

Commit

Permalink
Merge pull request #31 from bioio-devs/bugfix/cloud_metadata_update
Browse files Browse the repository at this point in the history
 bugfix/cloud_metadata_update
  • Loading branch information
BrianWhitneyAI authored Dec 13, 2024
2 parents cebfb1e + 26fc81b commit ee94a88
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bioio_ome_zarr/tests/test_s3_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@ def test_ome_zarr_reader(prefix: str, fs_kwargs: dict) -> None:
assert image_container.dtype == np.uint16
assert image_container.dims.order == "TCZYX"
assert image_container.dims.shape == (570, 2, 42, 1248, 1824)
assert image_container.channel_names == ["low_EGFP", "low_Bright"]
assert image_container.channel_names == ["EGFP", "Bright"]
assert image_container.current_resolution_level == resolution_level

# pixel sized in (Z, Y, X) order
assert image_container.physical_pixel_sizes == (
0.53,
0.7579,
0.2708333333333333,
0.2708333333333333,
)

0 comments on commit ee94a88

Please sign in to comment.