projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b917c64
)
Fix test in SBCL
author
David Vázquez
<davazp@gmail.com>
Wed, 1 May 2013 21:32:06 +0000
(22:32 +0100)
committer
David Vázquez
<davazp@gmail.com>
Wed, 1 May 2013 21:32:06 +0000
(22:32 +0100)
tests/list.lisp
patch
|
blob
|
history
diff --git
a/tests/list.lisp
b/tests/list.lisp
index
0365b5f
..
3ff5515
100644
(file)
--- a/
tests/list.lisp
+++ b/
tests/list.lisp
@@
-4,7
+4,7
@@
;; Once it does the lists can be compared directly in many of these tests
; COPY-TREE
-(test (let* ((foo '((1 2) (3 4)))
+(test (let* ((foo (list '(1 2) '(3 4)))
(bar (copy-tree foo)))
;; (SETF (CAR (CAR FOO)) 0) doesn't work in the test for some reason,
;; despite working fine in the REPL