(fig_test, fig_ref)
| 414 | |
| 415 | @check_figures_equal() |
| 416 | def test_textarea_set_text(fig_test, fig_ref): |
| 417 | ax_ref = fig_ref.add_subplot() |
| 418 | text0 = AnchoredText("Foo", "upper left") |
| 419 | ax_ref.add_artist(text0) |
| 420 | |
| 421 | ax_test = fig_test.add_subplot() |
| 422 | text1 = AnchoredText("Bar", "upper left") |
| 423 | ax_test.add_artist(text1) |
| 424 | text1.txt.set_text("Foo") |
| 425 | |
| 426 | |
| 427 | @image_comparison(['paddedbox.png'], remove_text=True, style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…