From a6f12d8f8d5e3ba3b7e32137cd67812e04497789 Mon Sep 17 00:00:00 2001 From: Jakub Jankiewicz Date: Thu, 25 Jan 2024 19:07:33 +0100 Subject: [PATCH] fix invalid test for SRFI-210 that was fixed #288 --- tests/syntax.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/syntax.scm b/tests/syntax.scm index 525d017c5..00309ef09 100644 --- a/tests/syntax.scm +++ b/tests/syntax.scm @@ -1157,7 +1157,7 @@ (foo () "x") (t.is #t #t))) -(test.failing "syntax: recursive use of free variable hygiene #288" +(test "syntax: recursive use of free variable hygiene #288" (lambda (t) (define-syntax call/mv (syntax-rules () @@ -1173,7 +1173,7 @@ (aux consumer (producer1 ...) ()))))) - (t.is (call/mv string (values #\a #\b) (values #\c #\d)) (#\a #\b #\c #\d)))) + (t.is (call/mv string (values #\a #\b) (values #\c #\d)) "abcd"))) (test "syntax: SRFI-147" (lambda (t)