Skip to content

Commit 1128332

Browse files
committed
Remove test_array xfail
1 parent de5ad26 commit 1128332

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

pandas/tests/arrays/test_array.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
import pytest
77
import pytz
88

9-
from pandas._config import using_string_dtype
10-
119
import pandas as pd
1210
import pandas._testing as tm
1311
from pandas.api.extensions import register_extension_dtype
@@ -277,7 +275,6 @@ def test_array_copy():
277275
cet = pytz.timezone("CET")
278276

279277

280-
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
281278
@pytest.mark.parametrize(
282279
"data, expected",
283280
[

pandas/tests/io/test_parquet.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -453,12 +453,8 @@ def test_read_filters(self, engine, tmp_path):
453453
repeat=1,
454454
)
455455

456-
def test_write_index(self, engine, using_copy_on_write, request):
456+
def test_write_index(self, engine, using_copy_on_write):
457457
check_names = engine != "fastparquet"
458-
if using_copy_on_write and engine == "fastparquet":
459-
request.applymarker(
460-
pytest.mark.xfail(reason="fastparquet write into index")
461-
)
462458

463459
df = pd.DataFrame({"A": [1, 2, 3]})
464460
check_round_trip(df, engine)

0 commit comments

Comments
 (0)