()
| 146 | |
| 147 | @image_comparison(['black_axes.png'], style='_classic_test') |
| 148 | def test_spines_black_axes(): |
| 149 | # GitHub #18804 |
| 150 | plt.rcParams["savefig.pad_inches"] = 0 |
| 151 | plt.rcParams["savefig.bbox"] = 'tight' |
| 152 | fig = plt.figure(0, figsize=(4, 4)) |
| 153 | ax = fig.add_axes((0, 0, 1, 1)) |
| 154 | ax.set_xticklabels([]) |
| 155 | ax.set_yticklabels([]) |
| 156 | ax.set_xticks([]) |
| 157 | ax.set_yticks([]) |
| 158 | ax.set_facecolor((0, 0, 0)) |
| 159 | |
| 160 | |
| 161 | def test_arc_spine_inner_no_axis(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…