Skip to content

Commit d740b65

Browse files
committed
TST: fix (other check of) test for MultiIndexPyIntEngine on 32 bit
1 parent 4618a09 commit d740b65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_multilevel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1617,7 +1617,7 @@ def test_pyint_engine(self):
16171617

16181618
# With missing key:
16191619
idces = range(len(keys))
1620-
expected = np.array([-1] + list(idces), dtype='int64')
1620+
expected = np.array([-1] + list(idces), dtype=np.intp)
16211621
missing = tuple([0, 1] * 5 * N)
16221622
result = index.get_indexer([missing] + [keys[i] for i in idces])
16231623
tm.assert_numpy_array_equal(result, expected)

0 commit comments

Comments
 (0)