Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherian authored and hollymandel committed Nov 3, 2024
1 parent e6725de commit 30d42c6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions xarray/tests/test_interp.py
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,6 @@ def test_interpolate_chunk_1d(
* np.exp(z),
coords=[("x", x), ("y", y), ("z", z)],
)
kwargs = {}

# choose the data dimensions
for data_dims in permutations(da.dims, data_ndim):
Expand Down Expand Up @@ -947,8 +946,8 @@ def test_interpolate_chunk_1d(
if chunked:
dest[dim] = xr.DataArray(data=dest[dim], dims=[dim])
dest[dim] = dest[dim].chunk(2)
actual = da.interp(method=method, **dest, kwargs=kwargs)
expected = da.compute().interp(method=method, **dest, kwargs=kwargs)
actual = da.interp(method=method, **dest)
expected = da.compute().interp(method=method, **dest)

Check failure on line 950 in xarray/tests/test_interp.py

View workflow job for this annotation

GitHub Actions / ubuntu-latest py3.10 min-all-deps

test_interpolate_chunk_1d[3-3-0-True-cubic] Failed: Timeout >180.0s

Check failure on line 950 in xarray/tests/test_interp.py

View workflow job for this annotation

GitHub Actions / ubuntu-latest py3.10 min-all-deps

test_interpolate_chunk_1d[3-3-0-False-cubic] Failed: Timeout >180.0s

assert_identical(actual, expected)

Expand Down

0 comments on commit 30d42c6

Please sign in to comment.