Skip to content

Commit b6c1e1a

Browse files
authored
Fix test failure on 32bit architectures (#136)
1 parent e405517 commit b6c1e1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ def _maybe_chunk(arr):
504504
fill_value=0,
505505
engine=engine,
506506
)
507-
assert_equal(result, np.zeros(expected_shape, dtype=np.int64))
507+
assert_equal(result, np.zeros(expected_shape, dtype=np.intp))
508508

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

0 commit comments

Comments
 (0)