Skip to content

Commit

Permalink
WIP: fix CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
gdementen committed Sep 13, 2023
1 parent 1e5fd6d commit 3096ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion larray/tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -3830,7 +3830,7 @@ def test_to_series():
# test for issue #1061 (object dtype labels array produce warning with Pandas1.4+)
arr = ndtest("a=1..3", dtype=np.int32).with_total()[:3]
res = arr.to_series()
int_index = pd.Index([1, 2, 3], dtype="int32", name='a')
int_index = pd.Index([1, 2, 3], dtype="int64", name='a')
expected = pd.Series([0, 1, 2], dtype="int32", index=int_index)
assert res.equals(expected)

Expand Down

0 comments on commit 3096ee6

Please sign in to comment.