Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
psobolewskiPhD committed Aug 21, 2022
1 parent 3506369 commit 15a6dbf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions napari_aicsimageio/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
@pytest.mark.parametrize(
"filename, expected_shape, expected_meta",
[
(PNG_FILE, (800, 537, 4), {"name": "Image:0", "rgb": True}),
(GIF_FILE, (72, 268, 268, 4), {"name": "Image:0", "rgb": True}),
(PNG_FILE, (800, 537, 4), {"name": Path(PNG_FILE).stem, "rgb": True}),
(GIF_FILE, (72, 268, 268, 4), {"name": Path(GIF_FILE).stem, "rgb": True}),
(
CZI_FILE,
(3, 6183, 7705),
Expand All @@ -57,10 +57,10 @@
(4, 65, 600, 900),
{
"name": [
"0 :: Image:0 :: Bright_2",
"0 :: Image:0 :: EGFP",
"0 :: Image:0 :: CMDRP",
"0 :: Image:0 :: H3342",
f"{Path(OME_TIFF).stem} :: Bright_2",
f"{Path(OME_TIFF).stem} :: EGFP",
f"{Path(OME_TIFF).stem} :: CMDRP",
f"{Path(OME_TIFF).stem} :: H3342",
],
"channel_axis": 0,
"scale": (0.29, 0.10833333333333332, 0.10833333333333332),
Expand Down

0 comments on commit 15a6dbf

Please sign in to comment.