We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddcdc94 commit 3303be7Copy full SHA for 3303be7
pandas/tests/arrays/masked/test_bitmask.py
@@ -401,7 +401,7 @@ def test_take1d():
401
def test_take1d_raises_not_axis0():
402
bma = BitmaskArray(np.array([True, False, True]))
403
with pytest.raises(NotImplementedError, match="only implemented for axis=0"):
404
- bma.take_1d(np.array([1]), axis=1)
+ bma.take_1d(np.array([1], dtype=np.int64), axis=1)
405
406
407
def test_take_1d_raises_empty_indices():
0 commit comments