Skip to content

Commit 5dee212

Browse files
authored
TST(str dtype): Resolve xfail in test_value_counts.py (#60701)
* TST(str dtype): Resolve xfail in test_value_counts.py * Revert
1 parent c98e083 commit 5dee212

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

pandas/tests/frame/methods/test_value_counts.py

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import numpy as np
22
import pytest
33

4-
from pandas._config import using_string_dtype
5-
6-
from pandas.compat import HAS_PYARROW
7-
84
import pandas as pd
95
import pandas._testing as tm
106

@@ -136,9 +132,6 @@ def test_data_frame_value_counts_dropna_true(nulls_fixture):
136132
tm.assert_series_equal(result, expected)
137133

138134

139-
@pytest.mark.xfail(
140-
using_string_dtype() and not HAS_PYARROW, reason="TODO(infer_string)", strict=False
141-
)
142135
def test_data_frame_value_counts_dropna_false(nulls_fixture):
143136
# GH 41334
144137
df = pd.DataFrame(

0 commit comments

Comments
 (0)