From 64320d2ba28ae35a4210848fbd31ea5a1693efdd Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Fri, 26 Jan 2024 16:38:33 -0500 Subject: [PATCH] FIX: One fewer --- mne_bids_pipeline/tests/test_run.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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: