Skip to content

Commit 8295e19

Browse files
committed
transfer the changes from the branch issue-shareMemory to this
1 parent 3a0c587 commit 8295e19

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

pandas/tests/extension/base/setitem.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -222,12 +222,9 @@ def test_setitem_integer_array_with_repeats(self, data, idx, box_in_series):
222222
"idx, box_in_series",
223223
[
224224
([0, 1, 2, pd.NA], False),
225-
pytest.param(
226-
[0, 1, 2, pd.NA], True, marks=pytest.mark.xfail(reason="GH-31948")
227-
),
225+
([0, 1, 2, pd.NA], True),
228226
(pd.array([0, 1, 2, pd.NA], dtype="Int64"), False),
229-
# TODO: change False to True?
230-
(pd.array([0, 1, 2, pd.NA], dtype="Int64"), False), # noqa: PT014
227+
(pd.array([0, 1, 2, pd.NA], dtype="Int64"), True),
231228
],
232229
ids=["list-False", "list-True", "integer-array-False", "integer-array-True"],
233230
)

0 commit comments

Comments
 (0)