From bc524daee8e270fa1030a2445d7569d773488160 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Fri, 2 Aug 2019 17:16:43 -0400 Subject: [PATCH] Remove dead code --- tests/native_tests/contrib/walk.hy | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/native_tests/contrib/walk.hy b/tests/native_tests/contrib/walk.hy index 2e59cfe..854b412 100644 --- a/tests/native_tests/contrib/walk.hy +++ b/tests/native_tests/contrib/walk.hy @@ -31,7 +31,6 @@ (assert (= acc [walk-form]))) (defn test-walk-iterators [] - (setv acc []) (assert (= (walk (fn [x] (* 2 x)) (fn [x] x) (drop 1 [1 [2 [3 [4]]]])) [[2 [3 [4]] 2 [3 [4]]]])))