Skip to content

Commit 3be51b9

Browse files
Terji PetersenTerji Petersen
Terji Petersen
authored and
Terji Petersen
committed
fix indirect tests
1 parent 8eed7e9 commit 3be51b9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/conftest.py

+3
Original file line numberDiff line numberDiff line change
@@ -596,14 +596,17 @@ def _create_mi_with_dt64tz_level():
596596
"range": tm.makeRangeIndex(100),
597597
"complex64": tm.makeFloatIndex(100).astype("complex64"),
598598
"complex128": tm.makeFloatIndex(100).astype("complex128"),
599+
"int": tm.makeNumericIndex(100, dtype="int64"),
599600
"num_int64": tm.makeNumericIndex(100, dtype="int64"),
600601
"num_int32": tm.makeNumericIndex(100, dtype="int32"),
601602
"num_int16": tm.makeNumericIndex(100, dtype="int16"),
602603
"num_int8": tm.makeNumericIndex(100, dtype="int8"),
604+
"uint": tm.makeNumericIndex(100, dtype="uint64"),
603605
"num_uint64": tm.makeNumericIndex(100, dtype="uint64"),
604606
"num_uint32": tm.makeNumericIndex(100, dtype="uint32"),
605607
"num_uint16": tm.makeNumericIndex(100, dtype="uint16"),
606608
"num_uint8": tm.makeNumericIndex(100, dtype="uint8"),
609+
"float": tm.makeNumericIndex(100, dtype="float64"),
607610
"num_float64": tm.makeNumericIndex(100, dtype="float64"),
608611
"num_float32": tm.makeNumericIndex(100, dtype="float32"),
609612
"bool-object": tm.makeBoolIndex(10).astype(object),

0 commit comments

Comments
 (0)