Remove char-to-string from tests
authorDavid Vázquez <davazp@gmail.com>
Tue, 4 Jun 2013 02:03:03 +0000 (03:03 +0100)
committerDavid Vázquez <davazp@gmail.com>
Tue, 4 Jun 2013 02:03:03 +0000 (03:03 +0100)
tests/characters.lisp

index a745051..03016d3 100644 (file)
 ;; CHAR-INT
 (test (= (char-int #\A) (char-int #\A)))  ;; can be pretty much anything, as long as it's consistent
 
-;; CHAR-TO-STRING (not actually part of the characters dictionary)
-(test (= 1 (string-length (char-to-string (code-char 127744)))))
+(test (= 1 (string-length (string (code-char 127744)))))
 
 ;; CHAR-CODE-LIMIT
 (test (< 95 char-code-limit 10000000))