File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ def indices(request):
405
405
406
406
407
407
# Needed to generate cartesian product of indices
408
- indices2 = indices
408
+ index_fixture2 = indices
409
409
410
410
411
411
# ----------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ def test_union_same_types(indices):
28
28
assert idx1 .union (idx2 ).dtype == idx1 .dtype
29
29
30
30
31
- def test_union_different_types (indices , indices2 ):
31
+ def test_union_different_types (indices , index_fixture2 ):
32
32
# This test only considers combinations of indices
33
33
# GH 23525
34
- idx1 , idx2 = indices , indices2
34
+ idx1 , idx2 = indices , index_fixture2
35
35
type_pair = tuple (sorted ([type (idx1 ), type (idx2 )], key = lambda x : str (x )))
36
36
if type_pair in COMPATIBLE_INCONSISTENT_PAIRS :
37
37
pytest .xfail ("This test only considers non compatible indexes." )
You can’t perform that action at this time.
0 commit comments