()
| 1004 | 'facecolor': 'teal'}, |
| 1005 | remove_text=True) |
| 1006 | def test_tightbbox_box_aspect(): |
| 1007 | fig = plt.figure() |
| 1008 | gs = fig.add_gridspec(1, 2) |
| 1009 | ax1 = fig.add_subplot(gs[0, 0]) |
| 1010 | ax2 = fig.add_subplot(gs[0, 1], projection='3d') |
| 1011 | ax1.set_box_aspect(.5) |
| 1012 | ax2.set_box_aspect((2, 1, 1)) |
| 1013 | |
| 1014 | |
| 1015 | @check_figures_equal(extensions=["svg", "pdf", "eps", "png"]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…