Test two equal array of rank 2 are found equal.
(self)
| 40 | self._test_not_equal(a, b) |
| 41 | |
| 42 | def test_array_rank2_eq(self): |
| 43 | """Test two equal array of rank 2 are found equal.""" |
| 44 | a = np.array([[1, 2], [3, 4]]) |
| 45 | b = np.array([[1, 2], [3, 4]]) |
| 46 | |
| 47 | self._test_equal(a, b) |
| 48 | |
| 49 | def test_array_diffshape(self): |
| 50 | """Test two arrays with different shapes are found not equal.""" |
nothing calls this directly
no test coverage detected