()
| 1695 | |
| 1696 | @image_comparison(["minor_ticks.png"], style="mpl20") |
| 1697 | def test_minor_ticks(): |
| 1698 | ax = plt.figure().add_subplot(projection="3d") |
| 1699 | ax.set_xticks([0.25], minor=True) |
| 1700 | ax.set_xticklabels(["quarter"], minor=True) |
| 1701 | ax.set_yticks([0.33], minor=True) |
| 1702 | ax.set_yticklabels(["third"], minor=True) |
| 1703 | ax.set_zticks([0.50], minor=True) |
| 1704 | ax.set_zticklabels(["half"], minor=True) |
| 1705 | |
| 1706 | |
| 1707 | # remove tolerance when regenerating the test image |
nothing calls this directly
no test coverage detected
searching dependent graphs…