@@ -84,7 +84,6 @@ def test_binops(self, func, other, frame):
84
84
assert df .flags .allows_duplicate_labels is False
85
85
assert func (df ).flags .allows_duplicate_labels is False
86
86
87
- @not_implemented
88
87
def test_preserve_getitem (self ):
89
88
df = pd .DataFrame ({"A" : [1 , 2 ]}).set_flags (allows_duplicate_labels = False )
90
89
assert df [["A" ]].flags .allows_duplicate_labels is False
@@ -306,15 +305,11 @@ def test_series_raises(self):
306
305
(operator .itemgetter (["A" , "A" ]), None ),
307
306
# loc
308
307
(operator .itemgetter (["a" , "a" ]), "loc" ),
309
- pytest .param (
310
- operator .itemgetter (("a" , ["A" , "A" ])), "loc" , marks = not_implemented
311
- ),
308
+ pytest .param (operator .itemgetter (("a" , ["A" , "A" ])), "loc" ),
312
309
(operator .itemgetter ((["a" , "a" ], "A" )), "loc" ),
313
310
# iloc
314
311
(operator .itemgetter ([0 , 0 ]), "iloc" ),
315
- pytest .param (
316
- operator .itemgetter ((0 , [0 , 0 ])), "iloc" , marks = not_implemented
317
- ),
312
+ pytest .param (operator .itemgetter ((0 , [0 , 0 ])), "iloc" ),
318
313
pytest .param (operator .itemgetter (([0 , 0 ], 0 )), "iloc" ),
319
314
],
320
315
)
0 commit comments