(self, expected, patches)
| 3928 | return summary |
| 3929 | |
| 3930 | def check_requests(self, expected, patches): |
| 3931 | summary = self.summarize(patches) |
| 3932 | for k in summary: |
| 3933 | assert summary[k] <= expected[k], (k, summary) |
| 3934 | |
| 3935 | def test_append(self) -> None: |
| 3936 | original = Dataset({"foo": ("x", [1])}, coords={"x": [0]}) |
no test coverage detected