()
| 71 | |
| 72 | |
| 73 | def test_one_off(): |
| 74 | x = np.array([[1, 2, 3]]) |
| 75 | y = np.array([[1], [2], [3]]) |
| 76 | bx, by = broadcast_arrays(x, y) |
| 77 | bx0 = np.array([[1, 2, 3], [1, 2, 3], [1, 2, 3]]) |
| 78 | by0 = bx0.T |
| 79 | assert_array_equal(bx0, bx) |
| 80 | assert_array_equal(by0, by) |
| 81 | |
| 82 | |
| 83 | def test_same_input_shapes(): |
nothing calls this directly
no test coverage detected