diff --git a/report.scm b/report.scm index d3c13da..e447a30 100644 --- a/report.scm +++ b/report.scm @@ -27,10 +27,10 @@ (newline out) (display "Test" out) (for-each - (lambda (implementation) - (display (string-append "" (cdr (assoc 'name implementation)) "") out) + (lambda (test) + (display (string-append "" (cdr (assoc 'name test)) "") out) (newline out)) - implementations) + tests) (display "" out) (newline out) (newline out)