(self)
| 159 | assert_array_equal(res, desired) |
| 160 | |
| 161 | def test_1D_array(self): |
| 162 | a = array([1]) |
| 163 | b = array([2]) |
| 164 | res = hstack([a, b]) |
| 165 | desired = array([1, 2]) |
| 166 | assert_array_equal(res, desired) |
| 167 | |
| 168 | def test_2D_array(self): |
| 169 | a = array([[1], [2]]) |
nothing calls this directly
no test coverage detected