Skip to content

Commit aca2012

Browse files
committed
Allow xfail test_vectorized_indexing when has_dask
Instead of when not has_dask.
1 parent 38fc6f7 commit aca2012

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xarray/tests/test_backends.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -609,8 +609,8 @@ def test_orthogonal_indexing(self):
609609
assert_identical(expected, actual)
610610

611611
@pytest.mark.xfail(
612-
not has_dask,
613-
reason="the code for indexing without dask handles negative steps in slices incorrectly",
612+
has_dask,
613+
reason="the code for indexing with dask handles negative steps in slices incorrectly",
614614
)
615615
def test_vectorized_indexing(self):
616616
in_memory = create_test_data()

0 commit comments

Comments
 (0)