(self)
| 551 | assert_array_equal(res, desired) |
| 552 | |
| 553 | def test_2D_array2(self): |
| 554 | a = np.array([1, 2]) |
| 555 | b = np.array([1, 2]) |
| 556 | res = dstack([a, b]) |
| 557 | desired = np.array([[[1, 1], [2, 2]]]) |
| 558 | assert_array_equal(res, desired) |
| 559 | |
| 560 | def test_generator(self): |
| 561 | with pytest.raises(TypeError, match="arrays to stack must be"): |
nothing calls this directly
no test coverage detected