summaryrefslogtreecommitdiff
path: root/test/run.scm
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2023-02-18 00:06:38 -0500
committerRobby Zambito <contact@robbyzambito.me>2023-02-18 00:06:38 -0500
commit2c67dfff745ab6d53d5fdcce9338e46b2da567f4 (patch)
treeb533bdd15ae0b18ee6eb1bb5cdb6fd8556383c63 /test/run.scm
parentdfe51779fceaf635436e769b39bbce898f19abd9 (diff)
Do not use and-let* in tests.
There are issues with using it in R7RS mode in Gerbil. Add Guile test file
Diffstat (limited to 'test/run.scm')
-rw-r--r--test/run.scm2
1 files changed, 1 insertions, 1 deletions
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))