Skip to content

Commit ec34833

Browse files
committed
Fix test
1 parent ecac5e2 commit ec34833

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mne/io/egi/tests/test_egi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def test_io_egi_mff(events_as_annotations):
212212
if events_as_annotations:
213213
# Grab the first annotation. Should be the first "DIN1" event.
214214
assert len(raw.annotations)
215-
onset, dur, desc, _ = raw.annotations[0].values()
215+
onset, dur, desc, _, _ = raw.annotations[0].values()
216216
assert_allclose(onset, 2.438)
217217
assert np.isclose(dur, 0)
218218
assert desc == "DIN1"

0 commit comments

Comments
 (0)