(fig_test, fig_ref)
| 5665 | |
| 5666 | @check_figures_equal() |
| 5667 | def test_axline_loglog(fig_test, fig_ref): |
| 5668 | ax = fig_test.subplots() |
| 5669 | ax.set(xlim=(0.1, 10), ylim=(1e-3, 1)) |
| 5670 | ax.loglog([.3, .6], [.3, .6], ".-") |
| 5671 | ax.axline((1, 1e-3), (10, 1e-2), c="k") |
| 5672 | |
| 5673 | ax = fig_ref.subplots() |
| 5674 | ax.set(xlim=(0.1, 10), ylim=(1e-3, 1)) |
| 5675 | ax.loglog([.3, .6], [.3, .6], ".-") |
| 5676 | ax.loglog([1, 10], [1e-3, 1e-2], c="k") |
| 5677 | |
| 5678 | |
| 5679 | @check_figures_equal() |