From 2c67dfff745ab6d53d5fdcce9338e46b2da567f4 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Sat, 18 Feb 2023 00:06:38 -0500 Subject: Do not use and-let* in tests. There are issues with using it in R7RS mode in Gerbil. Add Guile test file --- test/run.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/run.scm') diff --git a/test/run.scm b/test/run.scm index 6d72f46..416c0f4 100644 --- a/test/run.scm +++ b/test/run.scm @@ -217,7 +217,7 @@ (point? (line-segment->start ls)))) (test-assert "nested records should be able to round trip to a string" - (and-let* ((p1 (point 1 2)) + (let* ((p1 (point 1 2)) (p2 (point 3 4)) (ls (line-segment p1 p2)) (str (json->string ls)) -- cgit