@@ -596,14 +596,17 @@ def _create_mi_with_dt64tz_level():
596
596
"range" : tm .makeRangeIndex (100 ),
597
597
"complex64" : tm .makeFloatIndex (100 ).astype ("complex64" ),
598
598
"complex128" : tm .makeFloatIndex (100 ).astype ("complex128" ),
599
+ "int" : tm .makeNumericIndex (100 , dtype = "int64" ),
599
600
"num_int64" : tm .makeNumericIndex (100 , dtype = "int64" ),
600
601
"num_int32" : tm .makeNumericIndex (100 , dtype = "int32" ),
601
602
"num_int16" : tm .makeNumericIndex (100 , dtype = "int16" ),
602
603
"num_int8" : tm .makeNumericIndex (100 , dtype = "int8" ),
604
+ "uint" : tm .makeNumericIndex (100 , dtype = "uint64" ),
603
605
"num_uint64" : tm .makeNumericIndex (100 , dtype = "uint64" ),
604
606
"num_uint32" : tm .makeNumericIndex (100 , dtype = "uint32" ),
605
607
"num_uint16" : tm .makeNumericIndex (100 , dtype = "uint16" ),
606
608
"num_uint8" : tm .makeNumericIndex (100 , dtype = "uint8" ),
609
+ "float" : tm .makeNumericIndex (100 , dtype = "float64" ),
607
610
"num_float64" : tm .makeNumericIndex (100 , dtype = "float64" ),
608
611
"num_float32" : tm .makeNumericIndex (100 , dtype = "float32" ),
609
612
"bool-object" : tm .makeBoolIndex (10 ).astype (object ),
0 commit comments