Skip to content

Commit

Permalink
typerror
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Oct 3, 2018
1 parent a0cd5e7 commit 11a0d93
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pandas/tests/extension/json/test_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,11 @@ def test_add_series_with_extension_array(self, data):
with tm.assert_raises_regex(TypeError, "unsupported"):
ser + data

def _check_divmod_op(self, s, op, other, exc=NotImplementedError):
return super(TestArithmeticOps, self)._check_divmod_op(
s, op, other, exc=TypeError
)


class TestComparisonOps(BaseJSON, base.BaseComparisonOpsTests):
pass

0 comments on commit 11a0d93

Please sign in to comment.