From 59794bc838da6d4b864c4dd089175f8154d544a8 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Sat, 5 Oct 2024 14:59:57 +0300 Subject: [PATCH] Making the reports work --- report.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)