File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 12
12
13
13
14
14
class Dtypes :
15
- params = ["str" , "string" , "arrow_string " ]
15
+ params = ["str" , "string[python] " , "string[pyarrow] " ]
16
16
param_names = ["dtype" ]
17
17
18
18
def setup (self , dtype ):
19
- from pandas .core .arrays .string_arrow import ArrowStringDtype # noqa: F401
20
-
21
19
try :
22
20
self .s = Series (tm .makeStringIndex (10 ** 5 ), dtype = dtype )
23
21
except ImportError :
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ def test_api_per_method(
128
128
def test_api_for_categorical (any_string_method , any_string_dtype , request ):
129
129
# https://github.com/pandas-dev/pandas/issues/10661
130
130
131
- if any_string_dtype == "arrow_string " :
131
+ if any_string_dtype == "string[pyarrow] " :
132
132
# unsupported operand type(s) for +: 'ArrowStringArray' and 'str'
133
133
mark = pytest .mark .xfail (raises = TypeError , reason = "Not Implemented" )
134
134
request .node .add_marker (mark )
You can’t perform that action at this time.
0 commit comments