()
| 3426 | |
| 3427 | |
| 3428 | def test_log_scales_no_data(): |
| 3429 | _, ax = plt.subplots() |
| 3430 | ax.set(xscale="log", yscale="log") |
| 3431 | ax.xaxis.set_major_locator(mticker.MultipleLocator(1)) |
| 3432 | assert ax.get_xlim() == ax.get_ylim() == (1, 10) |
| 3433 | |
| 3434 | |
| 3435 | def test_log_scales_invalid(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…