From 83ce9464a533e40eaef0f4deea39cbc6451842db Mon Sep 17 00:00:00 2001 From: alimcmaster1 Date: Sun, 16 Dec 2018 22:27:59 +0000 Subject: [PATCH] Add issue number --- pandas/tests/frame/test_apply.py | 1 + 1 file changed, 1 insertion(+) 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))