From f5ee5f4ee5e5b9727c41f3cf096e7aeda14b70f6 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Sun, 23 Jul 2017 15:22:10 -0700 Subject: [PATCH] Whitespace fix --- tests/native_tests/with_test.hy | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/native_tests/with_test.hy b/tests/native_tests/with_test.hy index 0d52ff6..a071942 100644 --- a/tests/native_tests/with_test.hy +++ b/tests/native_tests/with_test.hy @@ -34,12 +34,12 @@ (assert (= t2 2)) (assert (= t3 3)))) - (defn test-quince-with [] - "NATIVE: test four withs, one with no args" - (with [t1 (WithTest 1) - t2 (WithTest 2) - t3 (WithTest 3) - _ (WithTest 4)] - (assert (= t1 1)) - (assert (= t2 2)) - (assert (= t3 3)))) +(defn test-quince-with [] + "NATIVE: test four withs, one with no args" + (with [t1 (WithTest 1) + t2 (WithTest 2) + t3 (WithTest 3) + _ (WithTest 4)] + (assert (= t1 1)) + (assert (= t2 2)) + (assert (= t3 3))))