File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -643,7 +643,7 @@ def test_dataframe_dummies_preserve_categorical_dtype(self):
643
643
class TestGetDummiesSparse (TestGetDummies ):
644
644
sparse = True
645
645
646
- @pytest .mark .xfail (reason = 'nan in index is problematic' )
646
+ @pytest .mark .xfail (reason = 'nan in index is problematic (GH 16894) ' )
647
647
def test_include_na (self ):
648
648
super (TestGetDummiesSparse , self ).test_include_na ()
649
649
Original file line number Diff line number Diff line change @@ -1095,7 +1095,8 @@ def test_as_blocks(self):
1095
1095
assert list (df_blocks .keys ()) == ['float64' ]
1096
1096
tm .assert_frame_equal (df_blocks ['float64' ], df )
1097
1097
1098
- @pytest .mark .xfail (reason = 'nan column names in _init_dict problematic' )
1098
+ @pytest .mark .xfail (reason = 'nan column names in _init_dict problematic '
1099
+ '(GH 16894)' )
1099
1100
def test_nan_columnname (self ):
1100
1101
# GH 8822
1101
1102
nan_colname = DataFrame (Series (1.0 , index = [0 ]), columns = [nan ])
You can’t perform that action at this time.
0 commit comments