Skip to content

Commit 553de10

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a2701b8 commit 553de10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xarray/tests/test_computation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1990,13 +1990,13 @@ def test_polyval_compat(use_dask, use_datetime) -> None:
19901990
pytest.param(
19911991
xr.DataArray([1, 2, 3], dims="x"),
19921992
xr.DataArray([1, 0, 0], dims="degree", coords={"degree": [2, 1, 0]}),
1993-
xr.DataArray([1, 2 ** 2, 3 ** 2], dims="x"),
1993+
xr.DataArray([1, 2**2, 3**2], dims="x"),
19941994
id="reordered-index",
19951995
),
19961996
pytest.param(
19971997
xr.DataArray([1, 2, 3], dims="x"),
19981998
xr.DataArray([5], dims="degree", coords={"degree": [3]}),
1999-
xr.DataArray([5, 5 * 2 ** 3, 5 * 3 ** 3], dims="x"),
1999+
xr.DataArray([5, 5 * 2**3, 5 * 3**3], dims="x"),
20002000
id="sparse-index",
20012001
),
20022002
pytest.param(

0 commit comments

Comments
 (0)