Skip to content

Commit

Permalink
fix python test
Browse files Browse the repository at this point in the history
  • Loading branch information
ZENOTME committed Dec 13, 2024
1 parent 7c9ca52 commit 4286561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/tests/test_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def test_month_transform():
def test_day_transform():
arr = pa.array([date(1970, 1, 1), date(2000, 4, 1)])
result = transform.day(arr)
expected = pa.array([0, 11048], type=pa.int32())
expected = pa.array([0, 11048], type=pa.date32())
assert result == expected


Expand Down

0 comments on commit 4286561

Please sign in to comment.