(self)
| 166 | assert_array_equal(res, desired) |
| 167 | |
| 168 | def test_2D_array(self): |
| 169 | a = array([[1], [2]]) |
| 170 | b = array([[1], [2]]) |
| 171 | res = hstack([a, b]) |
| 172 | desired = array([[1, 1], [2, 2]]) |
| 173 | assert_array_equal(res, desired) |
| 174 | |
| 175 | def test_generator(self): |
| 176 | with pytest.raises(TypeError, match="arrays to stack must be"): |
nothing calls this directly
no test coverage detected