(ax)
| 7580 | @pytest.fixture(params=['x', 'y']) |
| 7581 | def shared_axis_remover(request): |
| 7582 | def _helper_x(ax): |
| 7583 | ax2 = ax.twinx() |
| 7584 | ax2.remove() |
| 7585 | ax.set_xlim(0, 15) |
| 7586 | r = ax.xaxis.get_major_locator()() |
| 7587 | assert r[-1] > 14 |
| 7588 | |
| 7589 | def _helper_y(ax): |
| 7590 | ax2 = ax.twiny() |
nothing calls this directly
no test coverage detected
searching dependent graphs…