Skip to content

Commit

Permalink
make check_requests more permissive
Browse files Browse the repository at this point in the history
  • Loading branch information
d-v-b committed Dec 10, 2024
1 parent 192fc8b commit 2ce5b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/tests/test_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -3365,7 +3365,7 @@ def summarize(self, patches):
def check_requests(self, expected, patches):
summary = self.summarize(patches)
for k in summary:
assert summary[k] == expected[k], (k, summary)
assert summary[k] <= expected[k], (k, summary)

def test_append(self) -> None:
original = Dataset({"foo": ("x", [1])}, coords={"x": [0]})
Expand Down

0 comments on commit 2ce5b2e

Please sign in to comment.