(self)
| 4468 | assert_identical(data, expected) |
| 4469 | |
| 4470 | def test_update_multiindex_level(self) -> None: |
| 4471 | data = create_test_multiindex() |
| 4472 | |
| 4473 | with pytest.raises( |
| 4474 | ValueError, match=r"cannot set or update variable.*corrupt.*index " |
| 4475 | ): |
| 4476 | data.update({"level_1": range(4)}) |
| 4477 | |
| 4478 | def test_update_auto_align(self) -> None: |
| 4479 | ds = Dataset({"x": ("t", [3, 4])}, {"t": [0, 1]}) |
nothing calls this directly
no test coverage detected