summaryrefslogtreecommitdiff
path: root/tests/stdlib.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib.lisp')
-rw-r--r--tests/stdlib.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stdlib.lisp b/tests/stdlib.lisp
index 9acee4b..e6c7eee 100644
--- a/tests/stdlib.lisp
+++ b/tests/stdlib.lisp
@@ -40,7 +40,7 @@
(cons (car l) (take-while-list f (cdr l)))
'()))
-(define bracket (s) (concat "<" (concat s ">")))
+(define bracket (s) (concat "<" s ">"))
(define take-while-str (f s)
(cond
@@ -135,4 +135,4 @@
""
(null? (cdr l))
(car l)
- (concat (concat (car l) sep) (intercalate sep (cdr l)))))
+ (concat (car l) sep (intercalate sep (cdr l)))))