(x, y1, y2)
| 1290 | ] |
| 1291 | ) |
| 1292 | def test_fill_between_input(x, y1, y2): |
| 1293 | fig, ax = plt.subplots() |
| 1294 | with pytest.raises(ValueError): |
| 1295 | ax.fill_between(x, y1, y2) |
| 1296 | |
| 1297 | |
| 1298 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…