From 22bc256154bffc00372fed36029371c578cbf189 Mon Sep 17 00:00:00 2001 From: JacksonMaxfield Date: Thu, 15 Jul 2021 20:20:36 -0700 Subject: [PATCH] Update tests --- napari_aicsimageio/tests/test_core.py | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/napari_aicsimageio/tests/test_core.py b/napari_aicsimageio/tests/test_core.py index 5f2f105..a6259a1 100644 --- a/napari_aicsimageio/tests/test_core.py +++ b/napari_aicsimageio/tests/test_core.py @@ -36,17 +36,29 @@ ( CZI_FILE, (3, 6183, 7705), - {"name": ["EGFP", "mCher", "PGC"], "channel_axis": 0}, + { + "name": ["EGFP", "mCher", "PGC"], + "channel_axis": 0, + "scale": (9.08210704883533, 9.08210704883533), + }, ), ( OME_TIFF, (1, 4, 65, 600, 900), - {"name": ["Bright_2", "EGFP", "CMDRP", "H3342"], "channel_axis": 1}, + { + "name": ["Bright_2", "EGFP", "CMDRP", "H3342"], + "channel_axis": 1, + "scale": (0.29, 0.10833333333333332, 0.10833333333333332), + }, ), ( LIF_FILE, (1, 4, 1, 5622, 7666), - {"name": ["Gray", "Red", "Green", "Cyan"], "channel_axis": 1}, + { + "name": ["Gray", "Red", "Green", "Cyan"], + "channel_axis": 1, + "scale": (4.984719055966396, 4.984719055966396), + }, ), ], )