diff --git a/tests/records.scm b/tests/records.scm index 6346c154cd8bd4834dd3854d1fc86b2a9a53920d..800ed038277ab91961c0b6cecf6a801abb8f6e7d 100644 --- a/tests/records.scm +++ b/tests/records.scm @@ -56,7 +56,7 @@ (define-record-type* <bar> bar make-bar (and (match (bar (x 1) (y (+ x 1)) (z (* y 2))) (($ <bar> 1 2 4) #t)) (match (bar (x 7) (z (* x 3))) - (($ <bar> 7 42 21))) + (($ <bar> 7 42 21) #t)) (match (bar (z 21) (x (/ z 3))) (($ <bar> 7 42 21) #t)))))