We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98e9c66 commit cb4e08bCopy full SHA for cb4e08b
tests/test_doc.py
@@ -5,6 +5,6 @@
5
6
7
def test_xarray_example():
8
- data = xr.DataArray(np.zeros((1024, 1024)), dims=list("xy"))
+ data = xr.DataArray(np.zeros((1024, 1024)), dims=("x", "y"))
9
scaled_data = multiscale(data, windowed_mean, (2, 2))
10
- assert len(scaled_data) == 11, "Incorret Amount of Arrays returnes"
+ assert len(scaled_data) == 11, "Incorrect number of arrays returned"
0 commit comments