Skip to content

Commit 5cc36d3

Browse files
committed
Fix string
1 parent ab8e5aa commit 5cc36d3

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

tests/bdv/test_definitionoptions.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
from imcflibs.imagej.bdv import DefinitionOptions
44

5+
56
def test_defaults():
67
"""Test the default options by calling all formatters on a "raw" objects."""
78
acitt_options = (
89
"multiple_angles=[NO (one angle)] "
910
"multiple_channels=[YES (all channels in one file)] "
10-
"multiple_illuminations=[NO (one illumination direction)] "
11+
"multiple_illuminations_directions=[NO (one illumination direction)] "
1112
"multiple_tiles=[YES (one file per tile)] "
1213
"multiple_timepoints=[NO (one time-point)] "
1314
)
@@ -32,7 +33,7 @@ def test__multiple_timepoints_files():
3233
acitt_options = (
3334
"multiple_angles=[NO (one angle)] "
3435
"multiple_channels=[YES (all channels in one file)] "
35-
"multiple_illuminations=[NO (one illumination direction)] "
36+
"multiple_illuminations_directions=[NO (one illumination direction)] "
3637
"multiple_tiles=[YES (one file per tile)] "
3738
"multiple_timepoints=[YES (one file per time-point)] "
3839
)
@@ -42,13 +43,14 @@ def test__multiple_timepoints_files():
4243

4344
assert def_opts.fmt_acitt_options() == acitt_options
4445

46+
4547
def test__multiple_channels_files_multiple_timepoints():
4648
"""Test an example setting how to treat multiple channels and multiple time-points."""
4749

4850
acitt_options = (
4951
"multiple_angles=[NO (one angle)] "
5052
"multiple_channels=[YES (one file per channel)] "
51-
"multiple_illuminations=[NO (one illumination direction)] "
53+
"multiple_illuminations_directions=[NO (one illumination direction)] "
5254
"multiple_tiles=[YES (one file per tile)] "
5355
"multiple_timepoints=[YES (all time-points in one file)] "
5456
)
@@ -59,14 +61,15 @@ def test__multiple_channels_files_multiple_timepoints():
5961

6062
assert def_opts.fmt_acitt_options() == acitt_options
6163

64+
6265
def test_single_tile_multiple_angles_files():
6366
"""Test an example setting how to treat single tile and multiple angle
6467
files"""
6568

6669
acitt_options = (
6770
"multiple_angles=[YES (one file per angle)] "
6871
"multiple_channels=[YES (all channels in one file)] "
69-
"multiple_illuminations=[NO (one illumination direction)] "
72+
"multiple_illuminations_directions=[NO (one illumination direction)] "
7073
"multiple_tiles=[NO (one tile)] "
7174
"multiple_timepoints=[NO (one time-point)] "
7275
)

0 commit comments

Comments
 (0)