We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c98e083 commit 5dee212Copy full SHA for 5dee212
pandas/tests/frame/methods/test_value_counts.py
@@ -1,10 +1,6 @@
1
import numpy as np
2
import pytest
3
4
-from pandas._config import using_string_dtype
5
-
6
-from pandas.compat import HAS_PYARROW
7
8
import pandas as pd
9
import pandas._testing as tm
10
@@ -136,9 +132,6 @@ def test_data_frame_value_counts_dropna_true(nulls_fixture):
136
132
tm.assert_series_equal(result, expected)
137
133
138
134
139
-@pytest.mark.xfail(
140
- using_string_dtype() and not HAS_PYARROW, reason="TODO(infer_string)", strict=False
141
-)
142
135
def test_data_frame_value_counts_dropna_false(nulls_fixture):
143
# GH 41334
144
df = pd.DataFrame(
0 commit comments