We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376181c commit 4610b30Copy full SHA for 4610b30
xarray_array_testing/reduction.py
@@ -28,5 +28,7 @@ def test_variable_numerical_reduce(self, op, data):
28
# compute using xp.<OP>(array)
29
expected = getattr(self.xp, op)(variable.data)
30
31
- assert isinstance(actual, self.array_type), type(actual)
+ assert isinstance(
32
+ actual, self.array_type
33
+ ), f"expected {self.array_type} but got {type(actual)}"
34
self.assert_equal(actual, expected)
0 commit comments