Skip to content

Commit f96c869

Browse files
committed
Remove xfail for test_chunk due to Xarray #9326 round() fix
1 parent f62d351 commit f96c869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cubed_xarray/tests/test_xarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def test_unary_op(self):
148148
v = self.lazy_var
149149
self.assertLazyAndIdentical(-u, -v)
150150
self.assertLazyAndIdentical(abs(u), abs(v))
151-
# self.assertLazyAndIdentical(u.round(), v.round()) # TODO: fails, see https://github.com/pydata/xarray/pull/9326
151+
self.assertLazyAndIdentical(u.round(), v.round())
152152

153153
def test_binary_op(self):
154154
u = self.eager_var

0 commit comments

Comments
 (0)