Skip to content

Commit f62d351

Browse files
committed
Remove xfail for test_chunk due to Cubed #546 fix
1 parent 036e76b commit f62d351

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

cubed_xarray/tests/test_xarray.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ def test_copy(self):
8686
self.assertLazyAndIdentical(self.eager_var, self.lazy_var.copy())
8787
self.assertLazyAndIdentical(self.eager_var, self.lazy_var.copy(deep=True))
8888

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

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

0 commit comments

Comments
 (0)