From: Olof-Joachim Frahm Date: Mon, 3 Dec 2012 21:26:54 +0000 (+0100) Subject: Simpler TEST-NAMES. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=4d1390ee929c1593cb0b355048f9f8d0135d9a49;p=fiveam.git Simpler TEST-NAMES. --- diff --git a/src/test.lisp b/src/test.lisp index 877a847..90b56bd 100644 --- a/src/test.lisp +++ b/src/test.lisp @@ -36,8 +36,7 @@ named KEY in the *TEST* hash table." (remhash key *test*)) (defun test-names () - (loop for test being the hash-keys of *test* - collect test)) + (hash-table-keys *test*)) (defmacro test (name &body body) "Deprecated. See DEF-TEST."