Skip to content

Commit

Permalink
TST: fix (other check of) test for MultiIndexPyIntEngine on 32 bit (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
toobaz authored and harisbal committed Feb 28, 2018
1 parent 60a8218 commit f6c492e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/test_multilevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,7 @@ def test_pyint_engine(self):

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

0 comments on commit f6c492e

Please sign in to comment.