(fig_test, fig_ref)
| 6866 | |
| 6867 | @check_figures_equal() |
| 6868 | def test_pie_hatch_multi(fig_test, fig_ref): |
| 6869 | x = [0.3, 0.3, 0.1] |
| 6870 | hatch = ['/', '+', '.'] |
| 6871 | fig_test.subplots().pie(x, hatch=hatch) |
| 6872 | wedges, _ = fig_ref.subplots().pie(x) |
| 6873 | [w.set_hatch(hp) for w, hp in zip(wedges, hatch)] |
| 6874 | |
| 6875 | |
| 6876 | def test_pie_label_formatter(): |