(fig_test, fig_ref)
| 626 | |
| 627 | @check_figures_equal() |
| 628 | def test_minorticks_on_rcParams_both(fig_test, fig_ref): |
| 629 | with matplotlib.rc_context({"xtick.minor.visible": True, |
| 630 | "ytick.minor.visible": True}): |
| 631 | ax_test = fig_test.subplots() |
| 632 | ax_test.plot([0, 1], [0, 1]) |
| 633 | ax_ref = fig_ref.subplots() |
| 634 | ax_ref.plot([0, 1], [0, 1]) |
| 635 | ax_ref.minorticks_on() |
| 636 | |
| 637 | |
| 638 | @image_comparison(["autoscale_tiny_range.png"], remove_text=True, style='_classic_test') |
nothing calls this directly
no test coverage detected
searching dependent graphs…