Test two arrays with different shapes are found not equal.
(self)
| 131 | self._test_not_equal(c, b) |
| 132 | |
| 133 | def test_string_arrays(self): |
| 134 | """Test two arrays with different shapes are found not equal.""" |
| 135 | a = np.array(['floupi', 'floupa']) |
| 136 | b = np.array(['floupi', 'floupa']) |
| 137 | |
| 138 | self._test_equal(a, b) |
| 139 | |
| 140 | c = np.array(['floupipi', 'floupa']) |
| 141 | |
| 142 | self._test_not_equal(c, b) |
| 143 | |
| 144 | def test_recarrays(self): |
| 145 | """Test record arrays.""" |
nothing calls this directly
no test coverage detected