Skip to content

Commit 044ed1d

Browse files
committed
COMPAT: moar 32-bit compat for testing of indexers
xref pandas-dev#16826
1 parent 9c44f9b commit 044ed1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexes/test_category.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ def test_reindex_dtype(self):
393393
res, indexer = c.reindex(['a', 'c'])
394394
tm.assert_index_equal(res, Index(['a', 'a', 'c']), exact=True)
395395
tm.assert_numpy_array_equal(indexer,
396-
np.array([0, 3, 2], dtype=np.int64))
396+
np.array([0, 3, 2], dtype=np.intp))
397397

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

0 commit comments

Comments
 (0)