Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karsten Poeck
ansi-test
Commits
18f07f13
Commit
18f07f13
authored
Sep 01, 2003
by
pfdietz
Browse files
Simplified two error tests.
parent
47b8d8be
Changes
2
Hide whitespace changes
Inline
Side-by-side
ansi-tests/max.lsp
View file @
18f07f13
...
...
@@ -14,7 +14,7 @@
(deftest max.error.2
(loop for x in *mini-universe*
unless (or (realp x)
(eq (
classify-error**
`(classify-error (max ',x)))
(eq (
eval
`(classify-error (max ',x)))
'type-error))
collect x)
nil)
...
...
ansi-tests/min.lsp
View file @
18f07f13
...
...
@@ -14,7 +14,7 @@
(deftest min.error.2
(loop for x in *mini-universe*
unless (or (realp x)
(eq (
classify-error**
`(classify-error (min ',x)))
(eq (
eval
`(classify-error (min ',x)))
'type-error))
collect x)
nil)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment