(self)
| 228 | assert_array_equal(res, desired) |
| 229 | |
| 230 | def test_generator(self): |
| 231 | with pytest.raises(TypeError, match="arrays to stack must be"): |
| 232 | vstack(np.arange(3) for _ in range(2)) |
| 233 | |
| 234 | def test_casting_and_dtype(self): |
| 235 | a = np.array([1, 2, 3]) |