()
| 7072 | |
| 7073 | @image_comparison(['o_marker_path_snap.png'], savefig_kwarg={'dpi': 72}, style='mpl20') |
| 7074 | def test_o_marker_path_snap(): |
| 7075 | fig, ax = plt.subplots() |
| 7076 | ax.margins(.1) |
| 7077 | for ms in range(1, 15): |
| 7078 | ax.plot([1, 2, ], np.ones(2) + ms, 'o', ms=ms) |
| 7079 | |
| 7080 | for ms in np.linspace(1, 10, 25): |
| 7081 | ax.plot([3, 4, ], np.ones(2) + ms, 'o', ms=ms) |
| 7082 | |
| 7083 | |
| 7084 | def test_margins(): |