diff --git a/xarray_array_testing/reduction.py b/xarray_array_testing/reduction.py index 54af662..fb4b158 100644 --- a/xarray_array_testing/reduction.py +++ b/xarray_array_testing/reduction.py @@ -15,7 +15,7 @@ def expected_errors(op, **parameters): @pytest.mark.parametrize("op", ["mean", "sum", "prod", "std", "var"]) @given(st.data()) - def test_variable_mean(self, op, data): + def test_variable_numerical_reduce(self, op, data): variable = data.draw(xrst.variables(array_strategy_fn=self.array_strategy_fn)) with self.expected_errors(op, variable=variable):