(y, x1, x2)
| 1307 | ] |
| 1308 | ) |
| 1309 | def test_fill_betweenx_input(y, x1, x2): |
| 1310 | fig, ax = plt.subplots() |
| 1311 | with pytest.raises(ValueError): |
| 1312 | ax.fill_betweenx(y, x1, x2) |
| 1313 | |
| 1314 | |
| 1315 | @image_comparison(['fill_between_interpolate.png'], remove_text=True, |
nothing calls this directly
no test coverage detected
searching dependent graphs…