(fig_test, fig_ref)
| 89 | |
| 90 | @check_figures_equal() |
| 91 | def test_contour_set_paths(fig_test, fig_ref): |
| 92 | cs_test = fig_test.subplots().contour([[0, 1], [1, 2]]) |
| 93 | cs_ref = fig_ref.subplots().contour([[1, 0], [2, 1]]) |
| 94 | |
| 95 | cs_test.set_paths(cs_ref.get_paths()) |
| 96 | |
| 97 | |
| 98 | @image_comparison(['contour_manual_labels'], remove_text=True, style='mpl20') |