From dd47006c3d26d95122d2e6ceff98b0b8be692362 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Thu, 26 Aug 2010 08:03:06 -0500 Subject: [PATCH] fixed out-of-date docs --- collects/rackunit/scribblings/quick-start.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/rackunit/scribblings/quick-start.scrbl b/collects/rackunit/scribblings/quick-start.scrbl index ed4c80f6a9..75e98038bf 100644 --- a/collects/rackunit/scribblings/quick-start.scrbl +++ b/collects/rackunit/scribblings/quick-start.scrbl @@ -48,19 +48,19 @@ evaluate this file and see if the library is correct. Here's the result I get: @verbatim{ -#t -------------------- FAILURE name: check-equal? location: (file-test.rkt 7 0 117 27) expression: (check-equal? (my-* 1 2) 2) params: (4 2) +message: "Simple multiplication" actual: 4 expected: 2 --------------------} -The first @racket[#t] indicates the first test passed. The +The first test passed and so prints nothing. The second test failed, as shown by the message. Requiring RackUnit and writing checks is all you need to