Skip to content

Commit d031286

Browse files
committed
correct a test
1 parent cd15bda commit d031286

File tree

1 file changed

+1
-0
lines changed
  • pandas/tests/extension/base

1 file changed

+1
-0
lines changed

pandas/tests/extension/base/ops.py

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def check_opname(self, s, op_name, other, exc=Exception):
2929
def _check_op(self, s, op, other, op_name, exc=NotImplementedError):
3030
if exc is None:
3131
result = op(s, other)
32+
result = pd.Series(result, dtype = "Int64")
3233
expected = s.combine(other, op)
3334
self.assert_series_equal(result, expected)
3435
else:

0 commit comments

Comments
 (0)