diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | tests/infix-to-prefix-tests.scm | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2,4 +2,4 @@ test: guile -L . tests/infix-to-prefix-tests.scm - cat infix-to-prefix.log + find . diff --git a/tests/infix-to-prefix-tests.scm b/tests/infix-to-prefix-tests.scm index eb868f8..18d9022 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) +(test-equal '(+ a b c) (infix->prefix '(a + (b + c)))) (test-equal '(- a b c) |