From 74739bc43e80565d66c91e8c617a7c591f3916df Mon Sep 17 00:00:00 2001 From: Nicolas Dandrimont Date: Thu, 2 Jan 2014 00:52:29 +0100 Subject: [PATCH] Whitespace fix --- tests/native_tests/language.hy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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])))