@@ -1410,8 +1410,6 @@ def test_numpy_func_call(self):
1410
1410
[nan , nan ]
1411
1411
]
1412
1412
])
1413
- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1414
- '(GH 17386)' )
1415
1413
def test_where_with_numeric_data (self , data ):
1416
1414
# GH 17386
1417
1415
lower_bound = 1.5
@@ -1443,8 +1441,6 @@ def test_where_with_numeric_data(self, data):
1443
1441
0.1 ,
1444
1442
100.0 + 100.0j
1445
1443
])
1446
- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1447
- '(GH 17386)' )
1448
1444
def test_where_with_numeric_data_and_other (self , data , other ):
1449
1445
# GH 17386
1450
1446
lower_bound = 1.5
@@ -1460,8 +1456,6 @@ def test_where_with_numeric_data_and_other(self, data, other):
1460
1456
tm .assert_frame_equal (result , dense_expected )
1461
1457
tm .assert_sp_frame_equal (result , sparse_expected )
1462
1458
1463
- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1464
- '(GH 17386)' )
1465
1459
def test_where_with_bool_data (self ):
1466
1460
# GH 17386
1467
1461
data = [[False , False ], [True , True ], [False , False ]]
@@ -1483,8 +1477,6 @@ def test_where_with_bool_data(self):
1483
1477
0.1 ,
1484
1478
100.0 + 100.0j
1485
1479
])
1486
- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1487
- '(GH 17386)' )
1488
1480
def test_where_with_bool_data_and_other (self , other ):
1489
1481
# GH 17386
1490
1482
data = [[False , False ], [True , True ], [False , False ]]
@@ -1501,8 +1493,6 @@ def test_where_with_bool_data_and_other(self, other):
1501
1493
tm .assert_frame_equal (result , dense_expected )
1502
1494
tm .assert_sp_frame_equal (result , sparse_expected )
1503
1495
1504
- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1505
- '(GH 17386)' )
1506
1496
def test_quantile (self ):
1507
1497
# GH 17386
1508
1498
data = [[1 , 1 ], [2 , 10 ], [3 , 100 ], [nan , nan ]]
@@ -1518,8 +1508,6 @@ def test_quantile(self):
1518
1508
tm .assert_series_equal (result , dense_expected )
1519
1509
tm .assert_sp_series_equal (result , sparse_expected )
1520
1510
1521
- @pytest .mark .xfail (reason = 'Wrong SparseBlock initialization '
1522
- '(GH 17386)' )
1523
1511
def test_quantile_multi (self ):
1524
1512
# GH 17386
1525
1513
data = [[1 , 1 ], [2 , 10 ], [3 , 100 ], [nan , nan ]]
0 commit comments