From 694e1f51ee75a5dae02a87821a4d1dd50a59a33d Mon Sep 17 00:00:00 2001 From: "Christine P. Chai" Date: Fri, 24 Oct 2025 13:43:20 -0700 Subject: [PATCH] DOC: Correct a typo: an 1D -> a 1D --- pandas/tests/frame/methods/test_shift.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/frame/methods/test_shift.py b/pandas/tests/frame/methods/test_shift.py index 3f67caaa6ce26..37a5b0dec9f82 100644 --- a/pandas/tests/frame/methods/test_shift.py +++ b/pandas/tests/frame/methods/test_shift.py @@ -26,7 +26,7 @@ def test_shift_axis1_with_valid_fill_value_one_array(self): expected = df.T.shift(periods=1, fill_value=12345).T tm.assert_frame_equal(res, expected) - # same but with an 1D ExtensionArray backing it + # same but with a 1D ExtensionArray backing it df2 = df[[0]].astype("Float64") res2 = df2.shift(axis=1, periods=1, fill_value=12345) expected2 = DataFrame([12345] * 5, dtype="Float64")