From d8c8c2b38ee58636abb8312c7ba47ad30f317d4a Mon Sep 17 00:00:00 2001 From: Eitaro Fukamachi Date: Sun, 22 Mar 2015 11:18:32 +0900 Subject: [PATCH] Fix indentations. --- t/builder.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t/builder.lisp b/t/builder.lisp index 8ea9e01..8f1d1bd 100644 --- a/t/builder.lisp +++ b/t/builder.lisp @@ -59,8 +59,8 @@ (subtest "Embedded CL code with Middleware without keyword option." (let ((app (builder (when t :sample) *app*))) (is-type app - 'function - "Can build.") + 'function + "Can build.") (is-print (funcall app '(:path-info "/")) "sample" @@ -69,8 +69,8 @@ (subtest "Embedded CL code with Middleware with keyword option." (let ((app (builder (when t `(:sample :out ,(lambda (out) (format t "Got: ~a" out)))) *app*))) (is-type app - 'function - "Can build.") + 'function + "Can build.") (is-print (funcall app '(:path-info "/")) "Got: sample"