From c29e8d4882b79c2f2d170f95c57380022d7b7773 Mon Sep 17 00:00:00 2001 From: paku Date: Sun, 26 May 2024 01:49:34 +0900 Subject: [PATCH] Fix test --- tests/hsx.lisp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tests/hsx.lisp b/tests/hsx.lisp index 1f123cc..eb05560 100644 --- a/tests/hsx.lisp +++ b/tests/hsx.lisp @@ -25,8 +25,7 @@ (is (equal (element-children elm) (list "child1" "child2"))))) (test hsx-with-props-and-children - (test hsx-with-props - (let ((elm (div :prop1 "value1" :prop2 "value2" - "child1" "child2"))) - (is (equal (element-props elm) '(:prop1 "value1" :prop2 "value2"))) - (is (equal (element-children elm) (list "child1" "child2")))))) + (let ((elm (div :prop1 "value1" :prop2 "value2" + "child1" "child2"))) + (is (equal (element-props elm) '(:prop1 "value1" :prop2 "value2"))) + (is (equal (element-children elm) (list "child1" "child2")))))