aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-10-04 02:38:42 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-10-04 02:39:15 +0900
commit1020e9d0059f351a38ec693fd9b63d3f62413836 (patch)
tree92567ca18a481258c6adabe3e115c43d5329b4c9
parent7f5e445ea5399004b5b4d37395a5a5df8bbcfc96 (diff)
CI test
-rw-r--r--tests/infix-to-prefix-tests.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/infix-to-prefix-tests.scm b/tests/infix-to-prefix-tests.scm
index 18d9022..eb868f8 100644
--- a/tests/infix-to-prefix-tests.scm
+++ b/tests/infix-to-prefix-tests.scm
@@ -27,7 +27,7 @@
(test-equal '(+ a b c)
(infix->prefix '((a + b) + c)))
-(test-equal '(+ a b c)
+(test-equal '(+ a b)
(infix->prefix '(a + (b + c))))
(test-equal '(- a b c)