@@ -244,6 +244,7 @@ def test_cumprod_timedelta(self):
244244 def test_cumsum_pyarrow_strings (
245245 self , pyarrow_string_dtype , data , skipna , expected_data
246246 ):
247+ # https://github.com/pandas-dev/pandas/pull/60633
247248 ser = pd .Series (data , dtype = pyarrow_string_dtype )
248249 expected = pd .Series (expected_data , dtype = pyarrow_string_dtype )
249250 result = ser .cumsum (skipna = skipna )
@@ -277,6 +278,7 @@ def test_cumsum_pyarrow_strings(
277278 def test_cummin_cummax_pyarrow_strings (
278279 self , pyarrow_string_dtype , data , op , skipna , expected_data
279280 ):
281+ # https://github.com/pandas-dev/pandas/pull/60633
280282 ser = pd .Series (data , dtype = pyarrow_string_dtype )
281283 if expected_data is None :
282284 expected_data = ser .dtype .na_value
@@ -286,6 +288,7 @@ def test_cummin_cummax_pyarrow_strings(
286288 tm .assert_series_equal (result , expected )
287289
288290 def test_cumprod_pyarrow_strings (self , pyarrow_string_dtype , skipna ):
291+ # https://github.com/pandas-dev/pandas/pull/60633
289292 ser = pd .Series (list ("xyz" ), dtype = pyarrow_string_dtype )
290293 msg = f"operation 'cumprod' not supported for dtype '{ ser .dtype } '"
291294 with pytest .raises (TypeError , match = msg ):
0 commit comments