Skip to content

Commit

Permalink
correct shape
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrako authored Jan 8, 2025
1 parent f4ad579 commit 2bbadbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/gaze/io/asc_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def test_from_asc_has_frame_equal(kwargs, expected_frame):
'file': 'tests/files/eyelink_monocular_example.asc',
'patterns': 'eyelink',
},
(18, 3),
(16, 3),
{
'time': pl.Int64,
'pupil': pl.Float64,
Expand All @@ -158,7 +158,7 @@ def test_from_asc_has_frame_equal(kwargs, expected_frame):
'patterns': pm.datasets.ToyDatasetEyeLink().custom_read_kwargs['gaze']['patterns'],
'schema': pm.datasets.ToyDatasetEyeLink().custom_read_kwargs['gaze']['schema'],
},
(18, 7),
(16, 7),
{
'time': pl.Int64,
'pupil': pl.Float64,
Expand All @@ -175,7 +175,7 @@ def test_from_asc_has_frame_equal(kwargs, expected_frame):
'file': 'tests/files/eyelink_monocular_2khz_example.asc',
'patterns': 'eyelink',
},
(18, 3),
(16, 3),
{
'time': pl.Int64,
'pupil': pl.Float64,
Expand Down

0 comments on commit 2bbadbd

Please sign in to comment.