(self)
| 634 | assert not expected.identical(actual) |
| 635 | |
| 636 | def test_equals_failures(self) -> None: |
| 637 | orig = DataArray(np.arange(5.0), {"a": 42}, dims="x") |
| 638 | assert not orig.equals(np.arange(5)) # type: ignore[arg-type] |
| 639 | assert not orig.identical(123) # type: ignore[arg-type] |
| 640 | assert not orig.broadcast_equals({1: 2}) # type: ignore[arg-type] |
| 641 | |
| 642 | def test_broadcast_equals(self) -> None: |
| 643 | a = DataArray([0, 0], {"y": 0}, dims="x") |
nothing calls this directly
no test coverage detected