(self)
| 1120 | assert not data2.identical(data) |
| 1121 | |
| 1122 | def test_equals_failures(self) -> None: |
| 1123 | data = create_test_data() |
| 1124 | assert not data.equals("foo") # type: ignore[arg-type] |
| 1125 | assert not data.identical(123) # type: ignore[arg-type] |
| 1126 | assert not data.broadcast_equals({1: 2}) # type: ignore[arg-type] |
| 1127 | |
| 1128 | def test_broadcast_equals(self) -> None: |
| 1129 | data1 = Dataset(coords={"x": 0}) |
nothing calls this directly
no test coverage detected