(self)
| 9680 | def test_comparisons_forwards_error(op): |
| 9681 | class NotArray: |
| 9682 | def __array__(self): |
| 9683 | raise TypeError("run you fools") |
| 9684 | |
| 9685 | with pytest.raises(TypeError, match="run you fools"): |
| 9686 | op(np.arange(2), NotArray()) |
no outgoing calls
no test coverage detected