Skip to content

Commit

Permalink
Remove xfail for test_chunk due to Cubed #546 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite committed Sep 23, 2024
1 parent 036e76b commit f62d351
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions cubed_xarray/tests/test_xarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,6 @@ def test_copy(self):
self.assertLazyAndIdentical(self.eager_var, self.lazy_var.copy())
self.assertLazyAndIdentical(self.eager_var, self.lazy_var.copy(deep=True))

@pytest.mark.xfail(
reason="cubed rechunk handles chunks={} incorrectly, see https://github.com/cubed-dev/cubed/pull/546"
)
def test_chunk(self):
for chunks, expected in [
({}, ((2, 2), (2, 2, 2))),
Expand Down Expand Up @@ -292,9 +289,6 @@ def setUp(self):
self.data, coords={"x": range(4)}, dims=("x", "y"), name="foo"
)

@pytest.mark.xfail(
reason="cubed rechunk handles chunks={} incorrectly, see https://github.com/cubed-dev/cubed/pull/546"
)
def test_chunk(self) -> None:
for chunks, expected in [
({}, ((2, 2), (2, 2, 2))),
Expand Down

0 comments on commit f62d351

Please sign in to comment.