Skip to content

Commit d68a5c5

Browse files
committed
Handle divmod test
1 parent b395c90 commit d68a5c5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/tests/extension/test_period.py

+5
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ def test_arith_series_with_scalar(self, data, all_arithmetic_operators):
9090
super().test_arith_series_with_scalar(data,
9191
all_arithmetic_operators)
9292

93+
def _check_divmod_op(self, s, op, other, exc=NotImplementedError):
94+
super(TestArithmeticOps, self)._check_divmod_op(
95+
s, op, other, exc=TypeError
96+
)
97+
9398
def test_error(self):
9499
pass
95100

0 commit comments

Comments
 (0)