(fig_test, fig_ref)
| 2823 | |
| 2824 | @check_figures_equal() |
| 2825 | def test_stairs_edge_handling(fig_test, fig_ref): |
| 2826 | # Test |
| 2827 | test_ax = fig_test.add_subplot() |
| 2828 | test_ax.stairs([1, 2, 3], color='red', fill=True) |
| 2829 | |
| 2830 | # Ref |
| 2831 | ref_ax = fig_ref.add_subplot() |
| 2832 | st = ref_ax.stairs([1, 2, 3], fill=True) |
| 2833 | st.set_color('red') |
| 2834 | |
| 2835 | |
| 2836 | def contour_dat(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…