Closed
Description
pandas/pandas/tests/extension/integer/test_integer.py
Lines 327 to 329 in 114f415
says that we're testing the array
op, but s
is a Series
, not an array. Should that be result = pd.Series(op(data, other)
)?
Series is tested later:
pandas/pandas/tests/extension/integer/test_integer.py
Lines 336 to 341 in 114f415