(self, da2)
| 723 | @pytest.mark.usefixtures('load_xarray_accessor') |
| 724 | class TestXarrayCticks: |
| 725 | def test_cticks(self, da2): |
| 726 | plot = da2.isel(other=0).hvplot(cticks=[5, 10]) |
| 727 | handles = hv.renderer('bokeh').get_plot(plot).handles |
| 728 | assert handles['colorbar'].ticker.ticks == [5, 10] |
| 729 | |
| 730 | |
| 731 | def test_subcoordinate_y_bool(load_pandas_accessor): |