Skip to content

Commit 85afa97

Browse files
author
Wouter Kroot
committed
fixed test for button
1 parent d04caf6 commit 85afa97

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

mne/io/eyelink/tests/test_eyelink.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -508,13 +508,15 @@ def test_href_eye_events(tmp_path):
508508
"""Test Parsing file where Eye Event Data option was set to 'HREF'."""
509509
out_file = tmp_path / "tmp_eyelink.asc"
510510
lines = fname_href.read_text("utf-8").splitlines()
511+
511512
for li, line in enumerate(lines):
512513
if not line.startswith(("ESACC", "EFIX")):
513514
continue
514515
tokens = line.split()
515516
if line.startswith("ESACC"):
516517
href_sacc_vals = ["9999", "9999", "9999", "9999", "99.99", "999"]
517518
tokens[5:5] = href_sacc_vals # add href saccade values
519+
breakpoint()
518520
elif line.startswith("EFIX"):
519521
tokens = line.split()
520522
href_fix_vals = ["9999.9", "9999.9", "999"]

0 commit comments

Comments
 (0)