@@ -165,8 +165,8 @@ def test_add(dtype):
165165 tm .assert_series_equal (result , expected )
166166
167167
168- def test_add_2d (dtype , request , arrow_string_storage ):
169- if dtype .storage in arrow_string_storage :
168+ def test_add_2d (dtype , request ):
169+ if dtype .storage == "pyarrow" :
170170 reason = "Failed: DID NOT RAISE <class 'ValueError'>"
171171 mark = pytest .mark .xfail (raises = None , reason = reason )
172172 request .applymarker (mark )
@@ -464,8 +464,8 @@ def test_min_max(method, skipna, dtype):
464464
465465@pytest .mark .parametrize ("method" , ["min" , "max" ])
466466@pytest .mark .parametrize ("box" , [pd .Series , pd .array ])
467- def test_min_max_numpy (method , box , dtype , request , arrow_string_storage ):
468- if dtype .storage in arrow_string_storage and box is pd .array :
467+ def test_min_max_numpy (method , box , dtype , request ):
468+ if dtype .storage == "pyarrow" and box is pd .array :
469469 if box is pd .array :
470470 reason = "'<=' not supported between instances of 'str' and 'NoneType'"
471471 else :
@@ -479,7 +479,7 @@ def test_min_max_numpy(method, box, dtype, request, arrow_string_storage):
479479 assert result == expected
480480
481481
482- def test_fillna_args (dtype , arrow_string_storage ):
482+ def test_fillna_args (dtype ):
483483 # GH 37987
484484
485485 arr = pd .array (["a" , pd .NA ], dtype = dtype )
@@ -492,7 +492,7 @@ def test_fillna_args(dtype, arrow_string_storage):
492492 expected = pd .array (["a" , "b" ], dtype = dtype )
493493 tm .assert_extension_array_equal (res , expected )
494494
495- if dtype .storage in arrow_string_storage :
495+ if dtype .storage == "pyarrow" :
496496 msg = "Invalid value '1' for dtype string"
497497 else :
498498 msg = "Cannot set non-string value '1' into a StringArray."
@@ -643,10 +643,10 @@ def test_value_counts_sort_false(dtype):
643643 tm .assert_series_equal (result , expected )
644644
645645
646- def test_memory_usage (dtype , arrow_string_storage ):
646+ def test_memory_usage (dtype ):
647647 # GH 33963
648648
649- if dtype .storage in arrow_string_storage :
649+ if dtype .storage == "pyarrow" :
650650 pytest .skip (f"not applicable for { dtype .storage } " )
651651
652652 series = pd .Series (["a" , "b" , "c" ], dtype = dtype )
0 commit comments