aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)