Skip to content

Commit

Permalink
Remove xfail for test_unary_op (round) due to Xarray #9326 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite committed Sep 23, 2024
1 parent f62d351 commit 39921ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cubed_xarray/tests/test_xarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def test_unary_op(self):
v = self.lazy_var
self.assertLazyAndIdentical(-u, -v)
self.assertLazyAndIdentical(abs(u), abs(v))
# self.assertLazyAndIdentical(u.round(), v.round()) # TODO: fails, see https://github.com/pydata/xarray/pull/9326
self.assertLazyAndIdentical(u.round(), v.round())

def test_binary_op(self):
u = self.eager_var
Expand Down

0 comments on commit 39921ad

Please sign in to comment.