We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd15bda commit d031286Copy full SHA for d031286
pandas/tests/extension/base/ops.py
@@ -29,6 +29,7 @@ def check_opname(self, s, op_name, other, exc=Exception):
29
def _check_op(self, s, op, other, op_name, exc=NotImplementedError):
30
if exc is None:
31
result = op(s, other)
32
+ result = pd.Series(result, dtype = "Int64")
33
expected = s.combine(other, op)
34
self.assert_series_equal(result, expected)
35
else:
0 commit comments