Skip to content

Commit

Permalink
Fix test failure on 32bit architectures (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
avalentino authored Aug 16, 2022
1 parent e405517 commit b6c1e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ def _maybe_chunk(arr):
fill_value=0,
engine=engine,
)
assert_equal(result, np.zeros(expected_shape, dtype=np.int64))
assert_equal(result, np.zeros(expected_shape, dtype=np.intp))

# now when subsets are NaN
# labels = np.array([0, 0, 1, 1, 1], dtype=float)
Expand Down

0 comments on commit b6c1e1a

Please sign in to comment.