()
| 783 | |
| 784 | |
| 785 | def test_repeated_tightlayout(): |
| 786 | fig = Figure() |
| 787 | fig.tight_layout() |
| 788 | # subsequent calls should not warn |
| 789 | fig.tight_layout() |
| 790 | fig.tight_layout() |
| 791 | |
| 792 | |
| 793 | @check_figures_equal(extensions=["png", "pdf"]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…