[test] Remove debug print from MAPC test
authorAlfredo Beaumont <alfredo.beaumont@gmail.com>
Fri, 10 May 2013 15:28:43 +0000 (17:28 +0200)
committerAlfredo Beaumont <alfredo.beaumont@gmail.com>
Fri, 10 May 2013 15:28:43 +0000 (17:28 +0200)
tests/list.lisp

index 0ce5106..4e6fb0c 100644 (file)
 ;; MAPC
 (test (equal (mapc #'+ '(1 2) '(3) '(4 5 6)) '(1 2)))
 (test (let (foo)
-        (mapc (lambda (x y z) (print (list x y z)) (push (+ x y z) foo)) '(1 2) '(3) '(4 5 6))
+        (mapc (lambda (x y z) (push (+ x y z) foo)) '(1 2) '(3) '(4 5 6))
         (equal foo '(8))))