diff --git a/tests/ndarray/test_dsl_kernels.py b/tests/ndarray/test_dsl_kernels.py index 8261536f..45e58272 100644 --- a/tests/ndarray/test_dsl_kernels.py +++ b/tests/ndarray/test_dsl_kernels.py @@ -141,9 +141,9 @@ def kernel_fallback_for_else(x, y): acc = x for i in range(2): acc = acc + i + break else: - acc = acc + y - return acc + return acc + y @blosc2.dsl_kernel