Skip to content
Snippets Groups Projects
Commit 63f48855 authored by pfdietz's avatar pfdietz
Browse files

Fix test bug causing false successes in defclass.error.24 (spotted by P. Graves)

parent 5d0ba941
No related branches found
No related tags found
No related merge requests found
......@@ -184,7 +184,7 @@
for name = (class-name cl)
unless (or (not name)
(handler-case
(progn (eval `(defclass ,name ())))
(progn (eval `(defclass ,name ())) nil)
(error (c) c)))
collect (list cl name))
nil)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment