Skip to content

Commit

Permalink
Apply scale changes to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonMaxfield committed Jul 16, 2021
1 parent aca2ed8 commit 2b3b59e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions aicsimageio/tests/readers/test_lif_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
np.uint16,
dimensions.DEFAULT_DIMENSION_ORDER,
["Gray--TL-BF--EMP_BF", "Green--FLUO--GFP"],
(None, 3.076923076923077, 3.076923076923077),
(None, 0.32499999999999996, 0.32499999999999996),
),
(
"s_1_t_4_c_2_z_1.lif",
Expand All @@ -47,7 +47,7 @@
np.uint16,
dimensions.DEFAULT_DIMENSION_ORDER,
["Gray--TL-PH--EMP_BF", "Green--FLUO--GFP"],
(None, 2.9485556406398508, 2.9485556406398508),
(None, 0.33914910277324634, 0.33914910277324634),
),
(
"tiled.lif",
Expand All @@ -57,7 +57,7 @@
np.uint8,
dimensions.DEFAULT_DIMENSION_ORDER_WITH_MOSAIC_TILES,
["Gray", "Red", "Green", "Cyan"],
(None, 4.984719055966396, 4.984719055966396),
(None, 0.20061311154598827, 0.20061311154598827),
),
pytest.param(
"example.txt",
Expand Down Expand Up @@ -306,10 +306,10 @@ def test_lif_reader_mosaic_tile_inspection(
[
(
"tiled.lif",
np.arange(0, 2552.176156654795, 4.984719055966396),
np.arange(0, 2552.176156654795, 4.984719055966396),
np.arange(0, 28024.09053264308, 4.984719055966396),
np.arange(0, 38212.85628303839, 4.984719055966396),
np.arange(0, 102.71391311154599, 0.20061311154598827),
np.arange(0, 102.71391311154599, 0.20061311154598827),
np.arange(0, 1127.846913111546, 0.20061311154598827),
np.arange(0, 1537.900113111546, 0.20061311154598827),
),
],
)
Expand Down
4 changes: 2 additions & 2 deletions aicsimageio/tests/test_aics_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
np.uint16,
dimensions.DEFAULT_DIMENSION_ORDER,
["Gray--TL-PH--EMP_BF", "Green--FLUO--GFP"],
(None, 2.9485556406398508, 2.9485556406398508),
(None, 0.33914910277324634, 0.33914910277324634),
ET.Element,
),
(
Expand All @@ -179,7 +179,7 @@
np.uint8,
dimensions.DEFAULT_DIMENSION_ORDER,
["Gray", "Red", "Green", "Cyan"],
(None, 4.984719055966396, 4.984719055966396),
(None, 0.20061311154598827, 0.20061311154598827),
ET.Element,
),
#######################################################################
Expand Down

0 comments on commit 2b3b59e

Please sign in to comment.