Skip to content

Commit d653d5a

Browse files
committed
Remove unexpected lines due to new default value
1 parent d0c3274 commit d653d5a

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

tests/bdv/test_define_dataset_auto.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,17 @@ def test_define_dataset_auto_tile(tmp_path, caplog):
9595
+ result_folder
9696
+ "] "
9797
+ "check_stack_sizes "
98+
+ "setups_per_partition=0 "
99+
+ "use_deflate_compression "
100+
)
101+
102+
# Construct the final call to ImageJ
103+
final_call = "IJ.run(cmd=[%s], params=[%s])" % (cmd, options)
104+
105+
# Define the dataset using the "Auto-Loader" option
106+
bdv.define_dataset_auto(project_filename, file_info["path"], bf_series_type)
107+
# Check if the final call is in the log
108+
assert final_call == caplog.messages[0]
98109
+ "split_hdf5 "
99110
+ "timepoints_per_partition=1 "
100111
+ "setups_per_partition=0 "
@@ -160,8 +171,6 @@ def test_define_dataset_auto_angle(tmp_path, caplog):
160171
+ "] "
161172
+ "check_stack_sizes "
162173
+ "apply_angle_rotation "
163-
+ "split_hdf5 "
164-
+ "timepoints_per_partition=1 "
165174
+ "setups_per_partition=0 "
166175
+ "use_deflate_compression "
167176
)

0 commit comments

Comments
 (0)