(self)
| 2473 | |
| 2474 | @pytest.mark.slow |
| 2475 | def test_set_axis_labels(self) -> None: |
| 2476 | g = self.g.map_dataarray(xplt.contourf, "x", "y") |
| 2477 | g.set_axis_labels("longitude", "latitude") |
| 2478 | alltxt = text_in_fig() |
| 2479 | for label in ["longitude", "latitude"]: |
| 2480 | assert label in alltxt |
| 2481 | |
| 2482 | @pytest.mark.slow |
| 2483 | def test_facetgrid_colorbar(self) -> None: |
nothing calls this directly
no test coverage detected