Skip to content
Snippets Groups Projects
Commit c0c3fa6b authored by Robert P. Goldman's avatar Robert P. Goldman
Browse files

Replace non-ASCII error message with ASCII version.

Fixes pseudo-test failure on SBCL.
parent 9dbe891b
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,8 @@ ...@@ -10,7 +10,8 @@
(handler-bind (handler-bind
((error #'(lambda (c) ((error #'(lambda (c)
(format t "~&Caught error ~s" c) (format t "~&Caught error ~s" c)
(assert (not *caught-error*) () "Déjà vu") (assert (not *caught-error*) ()
"The missing system component error is not fixed by the handler, as expected.")
(setf *caught-error* t) (setf *caught-error* t)
;; Evil side-effect: create a .asd file from .hidden file. ;; Evil side-effect: create a .asd file from .hidden file.
(concatenate-files (list (test-source "try-reloading-dependency.hidden")) (concatenate-files (list (test-source "try-reloading-dependency.hidden"))
......
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