diff --git a/tests/native_tests/language.hy b/tests/native_tests/language.hy index 579c510..952dc49 100644 --- a/tests/native_tests/language.hy +++ b/tests/native_tests/language.hy @@ -817,9 +817,9 @@ (defn test-continue-continuation [] "NATIVE: test checking if continue actually continues" (setv y []) - (for [x (range 10)] - (if (!= x 5) - (continue)) + (for [x (range 10)] + (if (!= x 5) + (continue)) (.append y x)) (assert (= y [5])))