()
| 2772 | |
| 2773 | |
| 2774 | def test_stairs_invalid_mismatch(): |
| 2775 | with pytest.raises(ValueError, match='Size mismatch'): |
| 2776 | plt.stairs([1, 2], [0, 1]) |
| 2777 | |
| 2778 | |
| 2779 | def test_stairs_invalid_update(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…