(fig_test, fig_ref)
| 1590 | |
| 1591 | @check_figures_equal() |
| 1592 | def test_inverted(fig_test, fig_ref): |
| 1593 | # Plot then invert. |
| 1594 | ax = fig_test.add_subplot(projection="3d") |
| 1595 | ax.plot([1, 1, 10, 10], [1, 10, 10, 10], [1, 1, 1, 10]) |
| 1596 | ax.invert_yaxis() |
| 1597 | # Invert then plot. |
| 1598 | ax = fig_ref.add_subplot(projection="3d") |
| 1599 | ax.invert_yaxis() |
| 1600 | ax.plot([1, 1, 10, 10], [1, 10, 10, 10], [1, 1, 1, 10]) |
| 1601 | |
| 1602 | |
| 1603 | def test_inverted_cla(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…