diff --git a/mne_bids_pipeline/tests/test_run.py b/mne_bids_pipeline/tests/test_run.py index ec144f02c..2e068ef70 100644 --- a/mne_bids_pipeline/tests/test_run.py +++ b/mne_bids_pipeline/tests/test_run.py @@ -124,7 +124,9 @@ class _TestOptionsT(TypedDict, total=False): "config": "config_ERP_CORE.py", "task": "P3", }, - "MNE-phantom-KIT-data": {}, + "MNE-phantom-KIT-data": { + "config": "config_MNE_phantom_KIT_data.py", + }, } @@ -149,7 +151,7 @@ def dataset_test(request): def test_run(dataset, monkeypatch, dataset_test, capsys, tmp_path): """Test running a dataset.""" test_options = TEST_SUITE[dataset] - config = test_options.get("config", f"config_{dataset.replace('-', '_')}.py") + config = test_options.get("config", f"config_{dataset}.py") config_path = BIDS_PIPELINE_DIR / "tests" / "configs" / config extra_config = TEST_SUITE[dataset].get("extra_config", "") if extra_config: