We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd00e0f commit 9da8705Copy full SHA for 9da8705
pandas/tests/frame/methods/test_shift.py
@@ -26,7 +26,7 @@ def test_shift_axis1_with_valid_fill_value_one_array(self):
26
expected = df.T.shift(periods=1, fill_value=12345).T
27
tm.assert_frame_equal(res, expected)
28
29
- # same but with an 1D ExtensionArray backing it
+ # same but with a 1D ExtensionArray backing it
30
df2 = df[[0]].astype("Float64")
31
res2 = df2.shift(axis=1, periods=1, fill_value=12345)
32
expected2 = DataFrame([12345] * 5, dtype="Float64")
0 commit comments