Skip to content

Commit 0ab862f

Browse files
committed
fix: specify interpolation method in multidimensional interpolation test
1 parent e1f6135 commit 0ab862f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_interp_interpolation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1183,7 +1183,9 @@ def test_interp_multidim_edge_case_coordinates(self):
11831183
lat_out = np.array([45])
11841184
lon_out = np.array([90])
11851185

1186-
result = interp_multidim(data_in=data_in, lat_out=lat_out, lon_out=lon_out)
1186+
result = interp_multidim(
1187+
data_in=data_in, lat_out=lat_out, lon_out=lon_out, method="nearest"
1188+
)
11871189

11881190
assert result.shape == (1, 1)
11891191
assert result.values[0, 0] == 5

0 commit comments

Comments
 (0)