diff --git a/tests/native_tests/with_decorator.hy b/tests/native_tests/with_decorator.hy index 867c63a..d82214d 100644 --- a/tests/native_tests/with_decorator.hy +++ b/tests/native_tests/with_decorator.hy @@ -8,7 +8,8 @@ (defn bardec [cls] - (setv cls.my_attr 123)) + (setv cls.my_attr 123) + cls) (with-decorator bardec (defclass cls []