()
| 239 | |
| 240 | |
| 241 | def test_coordinate_transform_rename() -> None: |
| 242 | ds = xr.Dataset(coords=create_coords(scale=2.0, shape=(2, 2))) |
| 243 | roundtripped = ds.rename(x="u", y="v").rename(u="x", v="y") |
| 244 | assert_identical(ds, roundtripped, check_default_indexes=False) |
nothing calls this directly
no test coverage detected
searching dependent graphs…