Skip to content

Commit 9d4c7fb

Browse files
committed
fix broken test
1 parent c40bbd9 commit 9d4c7fb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_xdf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ def test_channel_names_standard_metadata():
148148
# let's try with another xdf file which follows the spec
149149
xdf = XDFImport(file_path_with_markers, convert_to_mne=False)
150150
ch_names = xdf.selected_signal_streams[0].ch_names
151-
assert ch_names[0] == 'foo'
152-
assert ch_names[1] == 'bar'
153-
assert ch_names[2] == 'baz'
151+
assert ch_names[0] == 'Ch1'
152+
assert ch_names[1] == 'Ch2'
153+
assert ch_names[2] == 'Ch3'
154154

155155
def test_ch_names_to_ch_types():
156156
# look at automatic detection of mne types

0 commit comments

Comments
 (0)