Skip to content

Commit

Permalink
COMPAT: moar 32-bit compat for testing of indexers (#16869)
Browse files Browse the repository at this point in the history
xref #16826
  • Loading branch information
jreback authored Jul 10, 2017
1 parent 3e20eab commit f4b12d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/indexes/test_category.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def test_reindex_dtype(self):
res, indexer = c.reindex(['a', 'c'])
tm.assert_index_equal(res, Index(['a', 'a', 'c']), exact=True)
tm.assert_numpy_array_equal(indexer,
np.array([0, 3, 2], dtype=np.int64))
np.array([0, 3, 2], dtype=np.intp))

c = CategoricalIndex(['a', 'b', 'c', 'a'])
res, indexer = c.reindex(Categorical(['a', 'c']))
Expand Down

0 comments on commit f4b12d8

Please sign in to comment.