()
| 79 | |
| 80 | |
| 81 | def test_one_off(): |
| 82 | x = np.array([[1, 2, 3]]) |
| 83 | y = np.array([[1], [2], [3]]) |
| 84 | bx, by = broadcast_arrays(x, y) |
| 85 | bx0 = np.array([[1, 2, 3], [1, 2, 3], [1, 2, 3]]) |
| 86 | by0 = bx0.T |
| 87 | assert_array_equal(bx0, bx) |
| 88 | assert_array_equal(by0, by) |
| 89 | |
| 90 | |
| 91 | def test_same_input_shapes(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…