()
| 12 | |
| 13 | |
| 14 | def test_concat_errors(): |
| 15 | assert_raises(TypeError, lambda: concat((1, 1), axis=None)) |
| 16 | assert_raises(TypeError, lambda: concat([asarray([1], dtype=int8), |
| 17 | asarray([1], dtype=float64)])) |
| 18 | |
| 19 | |
| 20 | def test_stack_errors(): |
nothing calls this directly
no test coverage detected