()
| 160 | |
| 161 | |
| 162 | def test_extra_kwargs_raise(): |
| 163 | fig, ax = plt.subplots() |
| 164 | |
| 165 | for scale in ['linear', 'log', 'symlog']: |
| 166 | with pytest.raises(TypeError): |
| 167 | ax.set_yscale(scale, foo='mask') |
| 168 | |
| 169 | |
| 170 | def test_logscale_invert_transform(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…