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

It was pointed out to me that the 'should be prepared' terminology for error...

It was pointed out to me that the 'should be prepared' terminology for error checking applied to the case where the first argument of map-into is NIL.  In that case, it's an extra step to check whether the other arguments are sequences, so 'lazy' checking can skip it.  Modified test map-into.error.2 to accept either outcome.
parent fb395a76
No related branches found
No related tags found
No related merge requests found
...@@ -351,9 +351,15 @@ ...@@ -351,9 +351,15 @@
(classify-error (map-into 'a #'(lambda () nil))) (classify-error (map-into 'a #'(lambda () nil)))
type-error) type-error)
;;; The next test was changed because if the first argument
;;; is NIL, map-into is said to 'return nil immediately', so
;;; the 'should be prepared' notation for the error checking
;;; means that error checking may be skipped.
(deftest map-into.error.2 (deftest map-into.error.2
(classify-error (map-into nil #'identity 'a)) (case (classify-error (map-into nil #'identity 'a))
type-error) ((nil type-error) 'good)
(t 'bad))
good)
(deftest map-into.error.3 (deftest map-into.error.3
(classify-error (map-into (copy-seq '(a b c)) #'cons '(d e f) 100)) (classify-error (map-into (copy-seq '(a b c)) #'cons '(d e f) 100))
......
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