We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50c97e5 commit edf6198Copy full SHA for edf6198
1 file changed
tests/test_utils.py
@@ -214,10 +214,10 @@ def test_compute_plane_position_slide_per_frame():
214
tiles_per_column = math.ceil(image.TotalPixelMatrixRows / image.Rows)
215
tiles_per_row = math.ceil(image.TotalPixelMatrixColumns / image.Columns)
216
assert len(plane_positions) == (
217
- num_optical_paths
218
- * num_focal_planes
219
- * tiles_per_row
220
- * tiles_per_column
+ num_optical_paths *
+ num_focal_planes *
+ tiles_per_row *
+ tiles_per_column
221
)
222
223
0 commit comments