(fig_test, fig_ref)
| 957 | |
| 958 | @check_figures_equal(extensions=["png", 'svg', 'pdf', 'eps']) |
| 959 | def test_modifying_arc(fig_test, fig_ref): |
| 960 | arc1 = Arc([.5, .5], .5, 1, theta1=0, theta2=60, angle=20) |
| 961 | arc2 = Arc([.5, .5], 1.5, 1, theta1=0, theta2=60, angle=10) |
| 962 | fig_ref.subplots().add_patch(arc1) |
| 963 | fig_test.subplots().add_patch(arc2) |
| 964 | arc2.set_width(.5) |
| 965 | arc2.set_angle(20) |
| 966 | |
| 967 | |
| 968 | def test_arrow_set_data(): |