Skip to content

Commit 7c5dec3

Browse files
remove unnecessary xfails
1 parent 9148698 commit 7c5dec3

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

pandas/tests/frame/indexing/test_indexing.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ def test_getitem_boolean(self, mixed_float_frame, mixed_int_frame, datetime_fram
177177
if bif[c].dtype != bifw[c].dtype:
178178
assert bif[c].dtype == df[c].dtype
179179

180-
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
181180
def test_getitem_boolean_casting(self, datetime_frame):
182181
# don't upcast if we don't need to
183182
df = datetime_frame.copy()

pandas/tests/frame/methods/test_to_csv.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def test_to_csv_from_csv1(self, temp_file, float_frame):
4444
float_frame.to_csv(path, header=False)
4545
float_frame.to_csv(path, index=False)
4646

47-
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
4847
def test_to_csv_from_csv1_datetime(self, temp_file, datetime_frame):
4948
path = str(temp_file)
5049
# test roundtrip
@@ -549,7 +548,6 @@ def test_to_csv_headers(self, temp_file):
549548
assert return_value is None
550549
tm.assert_frame_equal(to_df, recons)
551550

552-
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
553551
def test_to_csv_multiindex(self, temp_file, float_frame, datetime_frame):
554552
frame = float_frame
555553
old_index = frame.index

0 commit comments

Comments
 (0)