Skip to content

Commit f6c492e

Browse files
toobazharisbal
authored and
harisbal
committed
TST: fix (other check of) test for MultiIndexPyIntEngine on 32 bit (pandas-dev#19455)
1 parent 60a8218 commit f6c492e

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)