(fig_test, fig_ref)
| 6857 | |
| 6858 | @check_figures_equal() |
| 6859 | def test_pie_hatch_single(fig_test, fig_ref): |
| 6860 | x = [0.3, 0.3, 0.1] |
| 6861 | hatch = '+' |
| 6862 | fig_test.subplots().pie(x, hatch=hatch) |
| 6863 | wedges, _ = fig_ref.subplots().pie(x) |
| 6864 | [w.set_hatch(hatch) for w in wedges] |
| 6865 | |
| 6866 | |
| 6867 | @check_figures_equal() |