()
| 7013 | |
| 7014 | |
| 7015 | def test_mismatched_ticklabels(): |
| 7016 | fig, ax = plt.subplots() |
| 7017 | ax.plot(np.arange(10)) |
| 7018 | ax.xaxis.set_ticks([1.5, 2.5]) |
| 7019 | with pytest.raises(ValueError): |
| 7020 | ax.xaxis.set_ticklabels(['a', 'b', 'c']) |
| 7021 | |
| 7022 | |
| 7023 | def test_empty_ticks_fixed_loc(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…