tests: string-join: Be noisy.
* scaffold/boot/50-string-join.scm ("string-join\n"): Avoid exit 0 without output.
This commit is contained in:
parent
d79b5edb4f
commit
99adc7efdc
|
@ -45,6 +45,7 @@
|
|||
(if (null? (cdr lst)) (car lst)
|
||||
(string-append (car lst) infix (string-join (cdr lst) infix))))
|
||||
|
||||
(core:display "string-join\n")
|
||||
(if (string=? (string-join '("foo" "bar") "/") "foo/bar")
|
||||
(exit 0))
|
||||
(exit 1)
|
||||
|
|
Loading…
Reference in a new issue