summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2022-11-03 20:06:54 +0100
committerLeah Neukirchen <leah@vuxu.org>2022-11-03 20:06:54 +0100
commit7a469b8d057464a1953f6b02b36ea3d5626c42fa (patch)
treee267979a45342055dd0be8b247962e543a13c842 /tests
parenteed472a7436d2029c30799274545243f0ccd725d (diff)
downloadmew-7a469b8d057464a1953f6b02b36ea3d5626c42fa.tar.gz
mew-7a469b8d057464a1953f6b02b36ea3d5626c42fa.tar.xz
mew-7a469b8d057464a1953f6b02b36ea3d5626c42fa.zip
make rep use the binding syntax of loc
Diffstat (limited to 'tests')
-rw-r--r--tests/test.mew2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test.mew b/tests/test.mew
index 03f67c7..7b6f463 100644
--- a/tests/test.mew
+++ b/tests/test.mew
@@ -167,7 +167,7 @@
   (test 42 ((op* * 2 ... 3) 7)))
 
 (test-group "rep"
-  (test 42 (rep loop ((x 27) (y 5))
+  (test 42 (rep loop (x 27 y 5)
               (if (> y 0)
                 (loop (+ x y) (- y 1))
                 x))))