Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pandas/tests/extension/test_sparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ def test_fillna_no_op_returns_copy(self, data, request):
request.node.add_marker(
pytest.mark.xfail(reason="returns array with different fill value")
)
super().test_fillna_no_op_returns_copy(data)
with tm.assert_produces_warning(PerformanceWarning):
super().test_fillna_no_op_returns_copy(data)

def test_fillna_series_method(self, data_missing):
with tm.assert_produces_warning(PerformanceWarning):
Expand Down