print success on current-output-port

svn: r16787
This commit is contained in:
Sam Tobin-Hochstadt 2009-11-15 14:35:29 +00:00
parent 5bba93dd09
commit 960bf4caab

View File

@ -551,7 +551,7 @@ reflects the (broken) spec).
(define (show-test-results)
(cond
[(= failed-tests 0)
(fprintf (current-error-port) "passed all ~a tests\n" total-tests)]
(fprintf (current-output-port) "passed all ~a tests\n" total-tests)]
[else
(fprintf (current-error-port) "failed ~a out of ~a tests\n" failed-tests total-tests)]))