Skip to content
Snippets Groups Projects
Commit 18f07f13 authored by pfdietz's avatar pfdietz
Browse files

Simplified two error tests.

parent 47b8d8be
Branches
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
(deftest max.error.2 (deftest max.error.2
(loop for x in *mini-universe* (loop for x in *mini-universe*
unless (or (realp x) unless (or (realp x)
(eq (classify-error** `(classify-error (max ',x))) (eq (eval `(classify-error (max ',x)))
'type-error)) 'type-error))
collect x) collect x)
nil) nil)
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
(deftest min.error.2 (deftest min.error.2
(loop for x in *mini-universe* (loop for x in *mini-universe*
unless (or (realp x) unless (or (realp x)
(eq (classify-error** `(classify-error (min ',x))) (eq (eval `(classify-error (min ',x)))
'type-error)) 'type-error))
collect x) collect x)
nil) nil)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment