projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3a08a04
)
Fix test
author
David Vázquez
<davazp@gmail.com>
Wed, 1 May 2013 12:50:19 +0000
(13:50 +0100)
committer
David Vázquez
<davazp@gmail.com>
Wed, 1 May 2013 12:50:19 +0000
(13:50 +0100)
tests/read.lisp
patch
|
blob
|
history
diff --git
a/tests/read.lisp
b/tests/read.lisp
index
b8e851c
..
ddcc647
100644
(file)
--- a/
tests/read.lisp
+++ b/
tests/read.lisp
@@
-2,4
+2,5
@@
;; or when test macro supports error handling, whichever comes first
;; (test (equal (read-from-string " 1 3 5" t nil :start 2) (values 3 5)))
(expected-failure
- (equal (read-from-string "(a b c)") (values '(A B C) 7)))
+ (equal (multiple-value-list (read-from-string "(a b c)"))
+ '((A B C) 7)))