(self)
| 2351 | |
| 2352 | @pytest.mark.slow |
| 2353 | def test_float_index(self) -> None: |
| 2354 | self.darray.coords["z"] = [0.1, 0.2, 0.4] |
| 2355 | g = xplt.FacetGrid(self.darray, col="z") |
| 2356 | g.map_dataarray(xplt.imshow, "x", "y") |
| 2357 | |
| 2358 | @pytest.mark.slow |
| 2359 | def test_nonunique_index_error(self) -> None: |
nothing calls this directly
no test coverage detected