@@ -37,8 +37,8 @@ def test_write_binary_recording(tmp_path):
3737 file_paths = [tmp_path / "binary01.raw" ]
3838
3939 # Write binary recording
40- job_kwargs = dict (verbose = False , n_jobs = 1 )
41- write_binary_recording (recording , file_paths = file_paths , dtype = dtype , ** job_kwargs )
40+ job_kwargs = dict (n_jobs = 1 )
41+ write_binary_recording (recording , file_paths = file_paths , dtype = dtype , verbose = False , ** job_kwargs )
4242
4343 # Check if written data matches original data
4444 recorder_binary = BinaryRecordingExtractor (
@@ -64,9 +64,11 @@ def test_write_binary_recording_offset(tmp_path):
6464 file_paths = [tmp_path / "binary01.raw" ]
6565
6666 # Write binary recording
67- job_kwargs = dict (verbose = False , n_jobs = 1 )
67+ job_kwargs = dict (n_jobs = 1 )
6868 byte_offset = 125
69- write_binary_recording (recording , file_paths = file_paths , dtype = dtype , byte_offset = byte_offset , ** job_kwargs )
69+ write_binary_recording (
70+ recording , file_paths = file_paths , dtype = dtype , byte_offset = byte_offset , verbose = False , ** job_kwargs
71+ )
7072
7173 # Check if written data matches original data
7274 recorder_binary = BinaryRecordingExtractor (
@@ -97,8 +99,8 @@ def test_write_binary_recording_parallel(tmp_path):
9799 file_paths = [tmp_path / "binary01.raw" , tmp_path / "binary02.raw" ]
98100
99101 # Write binary recording
100- job_kwargs = dict (verbose = False , n_jobs = 2 , chunk_memory = "100k" , mp_context = "spawn" )
101- write_binary_recording (recording , file_paths = file_paths , dtype = dtype , ** job_kwargs )
102+ job_kwargs = dict (n_jobs = 2 , chunk_memory = "100k" , mp_context = "spawn" )
103+ write_binary_recording (recording , file_paths = file_paths , dtype = dtype , verbose = False , ** job_kwargs )
102104
103105 # Check if written data matches original data
104106 recorder_binary = BinaryRecordingExtractor (
@@ -127,8 +129,8 @@ def test_write_binary_recording_multiple_segment(tmp_path):
127129 file_paths = [tmp_path / "binary01.raw" , tmp_path / "binary02.raw" ]
128130
129131 # Write binary recording
130- job_kwargs = dict (verbose = False , n_jobs = 2 , chunk_memory = "100k" , mp_context = "spawn" )
131- write_binary_recording (recording , file_paths = file_paths , dtype = dtype , ** job_kwargs )
132+ job_kwargs = dict (n_jobs = 2 , chunk_memory = "100k" , mp_context = "spawn" )
133+ write_binary_recording (recording , file_paths = file_paths , dtype = dtype , verbose = False , ** job_kwargs )
132134
133135 # Check if written data matches original data
134136 recorder_binary = BinaryRecordingExtractor (
0 commit comments