()
| 420 | |
| 421 | |
| 422 | def test_tight_toggle(): |
| 423 | fig, ax = plt.subplots() |
| 424 | with pytest.warns(PendingDeprecationWarning): |
| 425 | fig.set_tight_layout(True) |
| 426 | assert fig.get_tight_layout() |
| 427 | fig.set_tight_layout(False) |
| 428 | assert not fig.get_tight_layout() |
| 429 | fig.set_tight_layout(True) |
| 430 | assert fig.get_tight_layout() |
nothing calls this directly
no test coverage detected
searching dependent graphs…