projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5297681
)
[test] Remove debug print from MAPC test
author
Alfredo Beaumont
<alfredo.beaumont@gmail.com>
Fri, 10 May 2013 15:28:43 +0000
(17:28 +0200)
committer
Alfredo Beaumont
<alfredo.beaumont@gmail.com>
Fri, 10 May 2013 15:28:43 +0000
(17:28 +0200)
tests/list.lisp
patch
|
blob
|
history
diff --git
a/tests/list.lisp
b/tests/list.lisp
index
0ce5106
..
4e6fb0c
100644
(file)
--- a/
tests/list.lisp
+++ b/
tests/list.lisp
@@
-124,5
+124,5
@@
;; 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))))