Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
skjerns committed Oct 22, 2024
1 parent fcad0f2 commit 26ec364
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mne_bids/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_get_ch_type_mapping():

# check that all mne types have a corresponding BIDS translation
# last update from mne 0.19.0. The following have been removed:
# dipole, fnirs, gof
# dipole, fnirs, gof, we could add them to BIDS conversion though
mne_valid_types = [
"bio",
"chpi",
Expand All @@ -65,7 +65,7 @@ def test_get_ch_type_mapping():
"temperature",
]
map_mne_to_bids = _get_ch_type_mapping(fro="mne", to="bids")
for ch_types in mne_valid_types:
for ch_type in mne_valid_types:
assert ch_type in map_mne_to_bids


Expand Down

0 comments on commit 26ec364

Please sign in to comment.