1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 13:30:26 +02:00

* lib.scm (full-reporter): The test name is the cadr of the

result, not the cdr.  I'm not macho enough to handle run-time
typechecking.
This commit is contained in:
Jim Blandy 1999-06-09 08:57:23 +00:00
parent 26425f3d4f
commit 29055e0647

View file

@ -295,7 +295,7 @@
((error) "ERROR") ((error) "ERROR")
(else #f)))) (else #f))))
(if label (if label
(display-line label ": " (format-test-name (cdr result))) (display-line label ": " (format-test-name (cadr result)))
(error "(test-suite lib) FULL-REPORTER: unrecognized result: " (error "(test-suite lib) FULL-REPORTER: unrecognized result: "
result)))) result))))