()
| 2482 | |
| 2483 | |
| 2484 | def test_hist_log_barstacked(): |
| 2485 | fig, axs = plt.subplots(2) |
| 2486 | axs[0].hist([[0], [0, 1]], 2, histtype="barstacked") |
| 2487 | axs[0].set_yscale("log") |
| 2488 | axs[1].hist([0, 0, 1], 2, histtype="barstacked") |
| 2489 | axs[1].set_yscale("log") |
| 2490 | fig.canvas.draw() |
| 2491 | assert axs[0].get_ylim() == axs[1].get_ylim() |
| 2492 | |
| 2493 | |
| 2494 | def test_hist_timedelta_raises(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…