Skip to content

Commit 11a0d93

Browse files
committed
typerror
1 parent a0cd5e7 commit 11a0d93

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/tests/extension/json/test_json.py

+5
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,11 @@ def test_add_series_with_extension_array(self, data):
266266
with tm.assert_raises_regex(TypeError, "unsupported"):
267267
ser + data
268268

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+
269274

270275
class TestComparisonOps(BaseJSON, base.BaseComparisonOpsTests):
271276
pass

0 commit comments

Comments
 (0)