diff options
| author | Robby Zambito <contact@robbyzambito.me> | 2023-02-18 00:06:38 -0500 |
|---|---|---|
| committer | Robby Zambito <contact@robbyzambito.me> | 2023-02-18 00:06:38 -0500 |
| commit | 2c67dfff745ab6d53d5fdcce9338e46b2da567f4 (patch) | |
| tree | b533bdd15ae0b18ee6eb1bb5cdb6fd8556383c63 /test/run.scm | |
| parent | dfe51779fceaf635436e769b39bbce898f19abd9 (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.scm | 2 |
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)) |
