mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-23 21:10:29 +02:00
* tests/alist.test: Use "'()" instead of "()" in all places
where the empty list is meant.
This commit is contained in:
parent
5280aacabc
commit
c8e39a6752
1 changed files with 2 additions and 2 deletions
|
@ -70,8 +70,8 @@
|
|||
(if x (cdr x) x)))
|
||||
|
||||
;;; Creators, getters
|
||||
(let ((a (acons 'a 'b (acons 'c 'd (acons 'e 'f ()))))
|
||||
(b (acons "this" "is" (acons "a" "test" ())))
|
||||
(let ((a (acons 'a 'b (acons 'c 'd (acons 'e 'f '()))))
|
||||
(b (acons "this" "is" (acons "a" "test" '())))
|
||||
(deformed '(a b c d e f g)))
|
||||
(pass-if "acons"
|
||||
(and (equal? a '((a . b) (c . d) (e . f)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue