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 6987cdd commit eb031e1Copy full SHA for eb031e1
pandas/tests/series/methods/test_combine.py
@@ -19,8 +19,6 @@ def test_combine_scalar(self):
19
20
def test_combine_series(self):
21
# GH#31899
22
- # Note - combine() with another Series is also tested elsewhere because
23
- # it is used when testing operators
24
s1 = Series([91, NA, 94], dtype="Int8")
25
s2 = Series([91, NA, 11], dtype="Int8")
26
result = s1.combine(s2, lambda x, y: x + y)
0 commit comments