projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e84255
)
Vectors are equal if they are eql only
author
David Vázquez
<davazp@gmail.com>
Wed, 1 May 2013 21:31:16 +0000
(22:31 +0100)
committer
David Vázquez
<davazp@gmail.com>
Wed, 1 May 2013 21:31:16 +0000
(22:31 +0100)
tests/equal.lisp
patch
|
blob
|
history
diff --git
a/tests/equal.lisp
b/tests/equal.lisp
index
7f76510
..
856a155
100644
(file)
--- a/
tests/equal.lisp
+++ b/
tests/equal.lisp
@@
-3,8
+3,3
@@
(test (equal "abc" "abc"))
(test (not (equal "abc" "def")))
(test (not (equal "Abc" "abc")))
-(test (equal #(1 2 3) #(1 2 3)))
-(test (equal '(1 2 #(3 4 ("a b c" T)))
- '(1 2 #(3 4 ("a b c" T)))))
-(test (not (equal '(1 2 #(3 4 ("a b c" T)))
- '(1 2 #(3 4 ("a b x" T))))))