()
| 407 | |
| 408 | |
| 409 | def test_tight_pads(): |
| 410 | fig, ax = plt.subplots() |
| 411 | with pytest.warns(PendingDeprecationWarning, |
| 412 | match='will be deprecated'): |
| 413 | fig.set_tight_layout({'pad': 0.15}) |
| 414 | fig.draw_without_rendering() |
| 415 | |
| 416 | |
| 417 | def test_tight_kwargs(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…