diff --git a/pandas/tests/resample/test_datetime_index.py b/pandas/tests/resample/test_datetime_index.py index ee32375caff8c..760ed35bab678 100644 --- a/pandas/tests/resample/test_datetime_index.py +++ b/pandas/tests/resample/test_datetime_index.py @@ -2214,6 +2214,7 @@ def test_resample_b_55282(unit): ], ) def test_arrow_timestamp_resample(tz): + # GH 56371 idx = Series(date_range("2020-01-01", periods=5), dtype="timestamp[ns][pyarrow]") if tz is not None: idx = idx.dt.tz_localize(tz) diff --git a/pandas/tests/resample/test_timedelta.py b/pandas/tests/resample/test_timedelta.py index 57e6628095e5c..7c70670d42908 100644 --- a/pandas/tests/resample/test_timedelta.py +++ b/pandas/tests/resample/test_timedelta.py @@ -213,6 +213,7 @@ def test_resample_closed_right(): @td.skip_if_no("pyarrow") def test_arrow_duration_resample(): + # GH 56371 idx = pd.Index(timedelta_range("1 day", periods=5), dtype="duration[ns][pyarrow]") expected = Series(np.arange(5, dtype=np.float64), index=idx) result = expected.resample("1D").mean()