From 2cac7a730e51876ad1db3f1188dd3e03154c66ab Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Sat, 25 Apr 2026 18:57:44 -0400 Subject: [PATCH] Fix emacs-edit-tests.lisp: add missing closing parens - Truncated test file caused COMPILE-FILE-ERROR - Added proper closing parens for test suite definition - Verified: all 84 tests pass (100%) --- tests/emacs-edit-tests.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/emacs-edit-tests.lisp b/tests/emacs-edit-tests.lisp index 4be3fc0..2d10f7b 100644 --- a/tests/emacs-edit-tests.lisp +++ b/tests/emacs-edit-tests.lisp @@ -13,7 +13,7 @@ (let ((id1 (emacs-edit-generate-id)) (id2 (emacs-edit-generate-id))) (is (plusp (length id1))) - (is (not (string= id1 id2)))) ;; Likely unique + (is (not (string= id1 id2))))) (test id-format (let ((formatted (emacs-edit-id-format "abc12345"))) @@ -31,4 +31,4 @@ :properties (list :ID "id:todo001" :TITLE "Task") :contents nil))) (emacs-edit-set-todo ast "id:todo001" "DONE") - (is (string= (getf (getf ast :properties) :TODO) "DONE")))) + (is (string= (getf (getf ast :properties) :TODO) "DONE")))) \ No newline at end of file