Skip to content

Commit

Permalink
adjust assert check
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrako authored Jan 8, 2025
1 parent 1f048a2 commit f4ad579
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/unit/gaze/io/asc_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,11 @@ def test_from_asc_has_frame_equal(kwargs, expected_frame):
),
],
)
def test_from_asc_has_shape_and_schema(kwargs, expected_frame):
def test_from_asc_has_shape_and_schema(kwargs, shape, schema):
gaze = pm.gaze.from_asc(**kwargs)

assert_frame_equal(gaze.frame, expected_frame, check_column_order=False)
assert gaze.frame.shape == shape
assert gaze.frame.schema == schema


@pytest.mark.parametrize(
Expand Down

0 comments on commit f4ad579

Please sign in to comment.