()
| 6451 | |
| 6452 | |
| 6453 | def test_shared_aspect_error(): |
| 6454 | fig, axes = plt.subplots(1, 2, sharex=True, sharey=True) |
| 6455 | axes[0].axis("equal") |
| 6456 | with pytest.raises(RuntimeError, match=r"set_aspect\(..., adjustable="): |
| 6457 | fig.draw_without_rendering() |
| 6458 | |
| 6459 | |
| 6460 | @pytest.mark.parametrize('err, args, kwargs, match', |
nothing calls this directly
no test coverage detected
searching dependent graphs…