Skip to content

Commit 9da8705

Browse files
authored
DOC: Correct a typo: an 1D -> a 1D (#62824)
1 parent dd00e0f commit 9da8705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/methods/test_shift.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_shift_axis1_with_valid_fill_value_one_array(self):
2626
expected = df.T.shift(periods=1, fill_value=12345).T
2727
tm.assert_frame_equal(res, expected)
2828

29-
# same but with an 1D ExtensionArray backing it
29+
# same but with a 1D ExtensionArray backing it
3030
df2 = df[[0]].astype("Float64")
3131
res2 = df2.shift(axis=1, periods=1, fill_value=12345)
3232
expected2 = DataFrame([12345] * 5, dtype="Float64")

0 commit comments

Comments
 (0)