Skip to content

Commit c45c754

Browse files
author
Wouter Kroot
committed
before try to merge
1 parent 85afa97 commit c45c754

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

mne/io/eyelink/tests/test_eyelink.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,6 @@ def test_multi_block_misc_channels(fname, tmp_path):
423423
assert raw.ch_names == chs_in_file
424424
assert raw.annotations.description[1] == "SYNCTIME"
425425

426-
#debug
427426
print("\n=== Annotations ===")
428427
for onset, duration, desc in zip(raw.annotations.onset,
429428
raw.annotations.duration,
@@ -508,15 +507,14 @@ def test_href_eye_events(tmp_path):
508507
"""Test Parsing file where Eye Event Data option was set to 'HREF'."""
509508
out_file = tmp_path / "tmp_eyelink.asc"
510509
lines = fname_href.read_text("utf-8").splitlines()
511-
512510
for li, line in enumerate(lines):
513511
if not line.startswith(("ESACC", "EFIX")):
514512
continue
515513
tokens = line.split()
516514
if line.startswith("ESACC"):
517515
href_sacc_vals = ["9999", "9999", "9999", "9999", "99.99", "999"]
518516
tokens[5:5] = href_sacc_vals # add href saccade values
519-
breakpoint()
517+
520518
elif line.startswith("EFIX"):
521519
tokens = line.split()
522520
href_fix_vals = ["9999.9", "9999.9", "999"]

0 commit comments

Comments
 (0)