Skip to content

Commit eb031e1

Browse files
committed
Remove unneeded comment
1 parent 6987cdd commit eb031e1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/tests/series/methods/test_combine.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ def test_combine_scalar(self):
1919

2020
def test_combine_series(self):
2121
# GH#31899
22-
# Note - combine() with another Series is also tested elsewhere because
23-
# it is used when testing operators
2422
s1 = Series([91, NA, 94], dtype="Int8")
2523
s2 = Series([91, NA, 11], dtype="Int8")
2624
result = s1.combine(s2, lambda x, y: x + y)

0 commit comments

Comments
 (0)