Skip to content

Commit 7acd4a5

Browse files
committed
Remove unneeded xfail
1 parent ae97a15 commit 7acd4a5

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

pandas/tests/extension/test_arrow.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,17 +1377,6 @@ def test_quantile(data, interpolation, quantile, request):
13771377
ids=["multi_mode", "single_mode"],
13781378
)
13791379
def test_mode_dropna_true(data_for_grouping, take_idx, exp_idx, request):
1380-
pa_dtype = data_for_grouping.dtype.pyarrow_dtype
1381-
if (
1382-
pa.types.is_boolean(pa_dtype)
1383-
and "multi_mode" in request.node.nodeid
1384-
and pa_version_under9p0
1385-
):
1386-
request.node.add_marker(
1387-
pytest.mark.xfail(
1388-
reason="https://issues.apache.org/jira/browse/ARROW-17096",
1389-
)
1390-
)
13911380
data = data_for_grouping.take(take_idx)
13921381
ser = pd.Series(data)
13931382
result = ser.mode(dropna=True)

0 commit comments

Comments
 (0)