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.
min_dims=1
1 parent fc5b434 commit 3c81608Copy full SHA for 3c81608
xarray_array_testing/indexing.py
@@ -45,9 +45,7 @@ def expected_errors(op, **parameters):
45
@given(st.data())
46
def test_variable_isel_orthogonal(self, data):
47
variable = data.draw(xrst.variables(array_strategy_fn=self.array_strategy_fn))
48
- idx = data.draw(
49
- orthogonal_indexers(sizes=variable.sizes, min_dims=len(variable.dims))
50
- )
+ idx = data.draw(orthogonal_indexers(sizes=variable.sizes, min_dims=1))
51
52
with self.expected_errors("isel_orthogonal", variable=variable, indexers=idx):
53
actual = variable.isel(idx).data
0 commit comments