Skip to content

Commit

Permalink
FIX: One fewer
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jan 26, 2024
1 parent 008e75d commit 64320d2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mne_bids_pipeline/tests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
}


Expand All @@ -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:
Expand Down

0 comments on commit 64320d2

Please sign in to comment.