diff options
Diffstat (limited to 'tests/symbol.lisp')
| -rw-r--r-- | tests/symbol.lisp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/symbol.lisp b/tests/symbol.lisp index f771272..e19c514 100644 --- a/tests/symbol.lisp +++ b/tests/symbol.lisp @@ -1,4 +1,4 @@ -(assert (eq 'a (intern "a"))) -(assert (eq (intern "ab") (intern (concat "a" "b")))) -(assert (equal "abc" (symbol->string 'abc))) -(assert (not (eq (gensym) (gensym)))) +(assert (eq? 'a (intern "a"))) +(assert (eq? (intern "ab") (intern (concat "a" "b")))) +(assert (equal? "abc" (symbol->string 'abc))) +(assert (not (eq? (gensym) (gensym)))) |
