()
| 906 | |
| 907 | |
| 908 | def test_errorbar_mapview_kwarg(): |
| 909 | D = {ii: ii for ii in range(10)} |
| 910 | fig, ax = plt.subplots() |
| 911 | ax.errorbar(x=D.keys(), y=D.values(), xerr=D.values()) |
| 912 | |
| 913 | |
| 914 | @image_comparison(['single_point', 'single_point'], style='mpl20') |