typerror · pandas-dev/pandas@11a0d93 (original) (raw)

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -266,6 +266,11 @@ def test_add_series_with_extension_array(self, data):
266 266 with tm.assert_raises_regex(TypeError, "unsupported"):
267 267 ser + data
268 268
269 +def _check_divmod_op(self, s, op, other, exc=NotImplementedError):
270 +return super(TestArithmeticOps, self)._check_divmod_op(
271 +s, op, other, exc=TypeError
272 + )
273 +
269 274
270 275 class TestComparisonOps(BaseJSON, base.BaseComparisonOpsTests):
271 276 pass