Skip to content

Commit 02cf92a

Browse files
committed
_
1 parent b9d0fc5 commit 02cf92a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

xarray/tests/test_dataarray.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7343,4 +7343,6 @@ def test_clip(da):
73437343

73447344
result = da.clip(min=da.mean("x"), max=da.mean("a"))
73457345
assert result.dims == da.dims
7346-
assert_array_equal(result.data, np.clip(da.data, min=da.mean("x").data, max=da.mean("a").data))
7346+
assert_array_equal(
7347+
result.data, np.clip(da.data, min=da.mean("x").data, max=da.mean("a").data)
7348+
)

0 commit comments

Comments
 (0)