Replace another exn? check by exn:fail?.

svn: r16040
This commit is contained in:
Mike Sperber 2009-09-17 13:14:07 +00:00
parent e5df901306
commit 1e0a68516e

View File

@ -1002,7 +1002,7 @@
(define (check-property-error test src-info test-info)
(let ((info (send test-info get-info)))
(send info add-check)
(with-handlers ((exn?
(with-handlers ((exn:fail?
(lambda (e)
(send info property-error e src-info)
(raise e))))