Skip to content

Commit

Permalink
Allow xfail test_vectorized_indexing when has_dask
Browse files Browse the repository at this point in the history
Instead of when not has_dask.
  • Loading branch information
weiji14 committed Jul 1, 2020
1 parent 38fc6f7 commit aca2012
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xarray/tests/test_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -609,8 +609,8 @@ def test_orthogonal_indexing(self):
assert_identical(expected, actual)

@pytest.mark.xfail(
not has_dask,
reason="the code for indexing without dask handles negative steps in slices incorrectly",
has_dask,
reason="the code for indexing with dask handles negative steps in slices incorrectly",
)
def test_vectorized_indexing(self):
in_memory = create_test_data()
Expand Down

0 comments on commit aca2012

Please sign in to comment.