We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b5e011 commit 676f0a8Copy full SHA for 676f0a8
src/eyelinkio/tests/test_edf.py
@@ -25,6 +25,10 @@ def test_read_raw():
25
# XXX: ideally we should get a binocular file with a calibration
26
assert edf_file["info"]["eye"] == "BINOCULAR"
27
assert len(edf_file["discrete"]["blinks"]) == 195
28
+ np.testing.assert_equal(edf_file["discrete"]["starts"]["stime"][0], 0.0)
29
+ np.testing.assert_almost_equal(
30
+ edf_file["discrete"]["ends"]["stime"][-1], 199.644
31
+ )
32
33
elif fname.name == "test_2_raw.edf": # First test file has this property
34
for kind in ['saccades', 'fixations', 'blinks']:
0 commit comments