()
| 2767 | |
| 2768 | |
| 2769 | def test_stairs_invalid_nan(): |
| 2770 | with pytest.raises(ValueError, match='Nan values in "edges"'): |
| 2771 | plt.stairs([1, 2], [0, np.nan, 1]) |
| 2772 | |
| 2773 | |
| 2774 | def test_stairs_invalid_mismatch(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…