Test two arrays with different shapes are found not equal.
(self)
| 47 | self._test_equal(a, b) |
| 48 | |
| 49 | def test_array_diffshape(self): |
| 50 | """Test two arrays with different shapes are found not equal.""" |
| 51 | a = np.array([1, 2]) |
| 52 | b = np.array([[1, 2], [1, 2]]) |
| 53 | |
| 54 | self._test_not_equal(a, b) |
| 55 | |
| 56 | def test_objarray(self): |
| 57 | """Test object arrays.""" |
nothing calls this directly
no test coverage detected