Skip to content

Commit eb12201

Browse files
committed
Fix tests
1 parent d7e1458 commit eb12201

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pandas/tests/extension/test_sparse.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -240,10 +240,6 @@ def test_fillna_limit_backfill(self, data_missing):
240240
super().test_fillna_limit_backfill(data_missing)
241241

242242
def test_fillna_no_op_returns_copy(self, data, request):
243-
if np.isnan(data.fill_value):
244-
request.applymarker(
245-
pytest.mark.xfail(reason="returns array with different fill value")
246-
)
247243
super().test_fillna_no_op_returns_copy(data)
248244

249245
@pytest.mark.xfail(reason="Unsupported")
@@ -400,6 +396,8 @@ def test_arith_frame_with_scalar(self, data, all_arithmetic_operators, request):
400396
"rmul",
401397
"floordiv",
402398
"rfloordiv",
399+
"truediv",
400+
"rtruediv",
403401
"pow",
404402
"mod",
405403
"rmod",

0 commit comments

Comments
 (0)