@@ -1410,8 +1410,6 @@ def test_numpy_func_call(self):
14101410 [nan , nan ]
14111411 ]
14121412 ])
1413- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1414- '(GH 17386)' )
14151413 def test_where_with_numeric_data (self , data ):
14161414 # GH 17386
14171415 lower_bound = 1.5
@@ -1443,8 +1441,6 @@ def test_where_with_numeric_data(self, data):
14431441 0.1 ,
14441442 100.0 + 100.0j
14451443 ])
1446- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1447- '(GH 17386)' )
14481444 def test_where_with_numeric_data_and_other (self , data , other ):
14491445 # GH 17386
14501446 lower_bound = 1.5
@@ -1460,8 +1456,6 @@ def test_where_with_numeric_data_and_other(self, data, other):
14601456 tm .assert_frame_equal (result , dense_expected )
14611457 tm .assert_sp_frame_equal (result , sparse_expected )
14621458
1463- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1464- '(GH 17386)' )
14651459 def test_where_with_bool_data (self ):
14661460 # GH 17386
14671461 data = [[False , False ], [True , True ], [False , False ]]
@@ -1483,8 +1477,6 @@ def test_where_with_bool_data(self):
14831477 0.1 ,
14841478 100.0 + 100.0j
14851479 ])
1486- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1487- '(GH 17386)' )
14881480 def test_where_with_bool_data_and_other (self , other ):
14891481 # GH 17386
14901482 data = [[False , False ], [True , True ], [False , False ]]
@@ -1501,8 +1493,6 @@ def test_where_with_bool_data_and_other(self, other):
15011493 tm .assert_frame_equal (result , dense_expected )
15021494 tm .assert_sp_frame_equal (result , sparse_expected )
15031495
1504- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1505- '(GH 17386)' )
15061496 def test_quantile (self ):
15071497 # GH 17386
15081498 data = [[1 , 1 ], [2 , 10 ], [3 , 100 ], [nan , nan ]]
@@ -1518,8 +1508,6 @@ def test_quantile(self):
15181508 tm .assert_series_equal (result , dense_expected )
15191509 tm .assert_sp_series_equal (result , sparse_expected )
15201510
1521- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1522- '(GH 17386)' )
15231511 def test_quantile_multi (self ):
15241512 # GH 17386
15251513 data = [[1 , 1 ], [2 , 10 ], [3 , 100 ], [nan , nan ]]
0 commit comments