@@ -401,23 +401,23 @@ def test_reindex_dtype(self):
401
401
exp = CategoricalIndex (['a' , 'a' , 'c' ], categories = ['a' , 'c' ])
402
402
tm .assert_index_equal (res , exp , exact = True )
403
403
tm .assert_numpy_array_equal (indexer ,
404
- np .array ([0 , 3 , 2 ], dtype = np .int64 ))
404
+ np .array ([0 , 3 , 2 ], dtype = np .intp ))
405
405
406
406
c = CategoricalIndex (['a' , 'b' , 'c' , 'a' ],
407
407
categories = ['a' , 'b' , 'c' , 'd' ])
408
408
res , indexer = c .reindex (['a' , 'c' ])
409
409
exp = Index (['a' , 'a' , 'c' ], dtype = 'object' )
410
410
tm .assert_index_equal (res , exp , exact = True )
411
411
tm .assert_numpy_array_equal (indexer ,
412
- np .array ([0 , 3 , 2 ], dtype = np .int64 ))
412
+ np .array ([0 , 3 , 2 ], dtype = np .intp ))
413
413
414
414
c = CategoricalIndex (['a' , 'b' , 'c' , 'a' ],
415
415
categories = ['a' , 'b' , 'c' , 'd' ])
416
416
res , indexer = c .reindex (Categorical (['a' , 'c' ]))
417
417
exp = CategoricalIndex (['a' , 'a' , 'c' ], categories = ['a' , 'c' ])
418
418
tm .assert_index_equal (res , exp , exact = True )
419
419
tm .assert_numpy_array_equal (indexer ,
420
- np .array ([0 , 3 , 2 ], dtype = np .int64 ))
420
+ np .array ([0 , 3 , 2 ], dtype = np .intp ))
421
421
422
422
def test_duplicates (self ):
423
423
0 commit comments