Skip to content

Commit ced86b2

Browse files
authored
Update tests/test_series.py
1 parent bb989c1 commit ced86b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ def test_types_shift() -> None:
419419
s = pd.Series([1, 2, 3], index=pd.date_range("2020", periods=3))
420420
check(assert_type(s.shift(), pd.Series), pd.Series, np.floating)
421421
check(
422-
assert_type(s.shift(axis=0, periods=1), "pd.Series[Any]"),
422+
assert_type(s.shift(axis=0, periods=1), pd.Series),
423423
pd.Series,
424424
np.floating,
425425
)

0 commit comments

Comments
 (0)