Skip to content

Commit 3303be7

Browse files
committed
win/32bit support
1 parent ddcdc94 commit 3303be7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/arrays/masked/test_bitmask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ def test_take1d():
401401
def test_take1d_raises_not_axis0():
402402
bma = BitmaskArray(np.array([True, False, True]))
403403
with pytest.raises(NotImplementedError, match="only implemented for axis=0"):
404-
bma.take_1d(np.array([1]), axis=1)
404+
bma.take_1d(np.array([1], dtype=np.int64), axis=1)
405405

406406

407407
def test_take_1d_raises_empty_indices():

0 commit comments

Comments
 (0)