Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenworsley committed Mar 30, 2022
1 parent c473e0d commit 214deda
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion esmf_regrid/experimental/unstructured_scheme.py
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ def __init__(
target_grid_cube,
method=self.method,
precomputed_weights=precomputed_weights,
resolution=resolution,
resolution=self.resolution,
)

# Store regrid info.
Expand Down
7 changes: 6 additions & 1 deletion esmf_regrid/tests/unit/_esmf_sdo/test_RefinedGridInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@


def test_expanded_lons_with_mesh():
"""Basic test for regridding with :meth:`~esmf_regrid.esmf_regridder.RefinedGridInfo.make_esmf_field`."""
"""
Basic test for regridding with :meth:`~esmf_regrid.esmf_regridder.RefinedGridInfo.make_esmf_field`.
Mirrors the tests in :func:`~esmf_regrid.tests.unit.experimental.unstructured_regrid.test_MeshInfo.test_regrid_with_mesh`
but with slightly different expected values due to increased accuracy.
"""
mesh_args = _make_small_mesh_args()
mesh = MeshInfo(*mesh_args)

Expand Down

0 comments on commit 214deda

Please sign in to comment.