Skip to content

Commit 79b926d

Browse files
Update pylossless/tests/test_bids.py
Co-authored-by: Scott Huberty <[email protected]>
1 parent 70f179e commit 79b926d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pylossless/tests/test_bids.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,14 @@ def edf_import_fct(path_in):
1818
import_args = [{"path_in": fname}]
1919
bids_path_args = [{'subject': '001', 'run': '01', 'session': '01',
2020
"task": "test"}]
21-
bids_paths = ll.bids.convert_dataset_to_bids(edf_import_fct, import_args,
21+
bids_paths = ll.bids.convert_dataset_to_bids(
22+
edf_import_fct,
23+
import_args,
24+
bids_path_args,
25+
bids_root=tmp_path / "bids_dataset",
26+
overwrite=True
27+
)
28+
2229
bids_path_args, overwrite=True)
2330

2431
print(bids_paths)

0 commit comments

Comments
 (0)