()
| 180 | |
| 181 | |
| 182 | def test_logscale_transform_repr(): |
| 183 | fig, ax = plt.subplots() |
| 184 | ax.set_yscale('log') |
| 185 | repr(ax.transData) |
| 186 | repr(LogTransform(10, nonpositive='clip')) |
| 187 | |
| 188 | |
| 189 | @image_comparison(['logscale_nonpos_values.png'], |
nothing calls this directly
no test coverage detected
searching dependent graphs…