Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tests to aggregate.py #486

Merged
merged 14 commits into from
Nov 4, 2024
Prev Previous commit
Next Next commit
fix etst
RondeauG committed Nov 4, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 723d6f0530d828915a291c0c4583b4c0db79e001
2 changes: 1 addition & 1 deletion tests/test_spatial.py
Original file line number Diff line number Diff line change
@@ -200,7 +200,7 @@ def test_error(self):
with pytest.warns(
UserWarning, match="There are conflicting grid_mapping attributes"
):
assert xs.regrid._get_grid_mapping(ds) == "lambert_conformal_conic"
assert xs.spatial.get_grid_mapping(ds) == "lambert_conformal_conic"


class TestSubset: