Skip to content

Commit c00a758

Browse files
committed
un-xfail
1 parent b34e1c2 commit c00a758

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

pandas/tests/groupby/test_groupby_dropna.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -387,9 +387,6 @@ def test_groupby_dropna_with_multiindex_input(input_index, keys, series):
387387
tm.assert_equal(result, expected)
388388

389389

390-
@pytest.mark.xfail(
391-
using_string_dtype() and not HAS_PYARROW, reason="TODO(infer_string)"
392-
)
393390
def test_groupby_nan_included():
394391
# GH 35646
395392
data = {"group": ["g1", np.nan, "g1", "g2", np.nan], "B": [0, 1, 2, 3, 4]}

pandas/tests/window/test_rolling.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
import numpy as np
77
import pytest
88

9-
from pandas._config import using_string_dtype
10-
119
from pandas.compat import (
12-
HAS_PYARROW,
1310
IS64,
1411
is_platform_arm,
1512
is_platform_power,
@@ -1329,9 +1326,6 @@ def test_rolling_corr_timedelta_index(index, window):
13291326
tm.assert_almost_equal(result, expected)
13301327

13311328

1332-
@pytest.mark.xfail(
1333-
using_string_dtype() and not HAS_PYARROW, reason="TODO(infer_string)"
1334-
)
13351329
def test_groupby_rolling_nan_included():
13361330
# GH 35542
13371331
data = {"group": ["g1", np.nan, "g1", "g2", np.nan], "B": [0, 1, 2, 3, 4]}

0 commit comments

Comments
 (0)