Skip to content

Commit 6446d0a

Browse files
committed
Fix no-pyarrow test
1 parent 755b2f8 commit 6446d0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/extension/test_string.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def test_groupby_extension_apply(self, data_for_grouping, groupby_apply_op):
216216
def test_combine_add(self, data_repeated, using_infer_string, request):
217217
dtype = next(data_repeated(1)).dtype
218218
if using_infer_string and (
219-
(dtype.na_value is pd.NA) and (dtype.storage == "python" and HAS_PYARROW)
219+
(dtype.na_value is pd.NA) and dtype.storage == "python"
220220
):
221221
mark = pytest.mark.xfail(
222222
reason="The pointwise operation result will be inferred to "

0 commit comments

Comments
 (0)