diff --git a/pandas/tests/frame/test_apply.py b/pandas/tests/frame/test_apply.py index 8e9f617c2eed8..3a9572bdedaab 100644 --- a/pandas/tests/frame/test_apply.py +++ b/pandas/tests/frame/test_apply.py @@ -1140,6 +1140,7 @@ def test_agg_cython_table_raises(self, df, func, expected, axis): @pytest.mark.parametrize("num_cols", [2, 3, 5]) def test_frequency_is_original(self, num_cols): + # GH 22150 index = pd.DatetimeIndex(["1950-06-30", "1952-10-24", "1953-05-29"]) original = index.copy() df = DataFrame(1, index=index, columns=range(num_cols))