Skip to content

Commit ad941d7

Browse files
author
Maria Stazherova
committed
remove redundant cast
1 parent 7c84710 commit ad941d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/series/methods/test_fillna.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -967,6 +967,6 @@ def test_fillna_parr(self):
967967
)
968968
expected = Series(arr)
969969

970-
filled = Series(ser.fillna(method="pad"))
970+
filled = ser.fillna(method="pad")
971971

972972
tm.assert_series_equal(filled, expected)

0 commit comments

Comments
 (0)