Skip to content

Commit 698bb2a

Browse files
committed
Remove redundant condition in dask test
1 parent 970e0f0 commit 698bb2a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/test_downstream.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -240,10 +240,6 @@ def test_frame_setitem_dask_array_into_new_col(request):
240240
pytest.mark.xfail(reason="loc.__setitem__ incorrectly mutated column c")
241241
)
242242

243-
if Version(dask.__version__) >= Version("2025.1.0"):
244-
request.applymarker(
245-
pytest.mark.xfail(reason="loc.__setitem__ incorrectly mutated column c")
246-
)
247243
dda = da.array([1, 2])
248244
df = DataFrame({"a": ["a", "b"]})
249245
df["b"] = dda

0 commit comments

Comments
 (0)