Skip to content

Commit 8a56775

Browse files
toobazjreback
authored andcommitted
TST: fix (other check of) test for MultiIndexPyIntEngine on 32 bit (#19455)
1 parent 44bbd5a commit 8a56775

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_multilevel.py

Lines changed: 1 addition & 1 deletion
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)