aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-10-11 21:42:15 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-10-11 21:42:15 +0900
commit7dedd8a14e3a969626391dce208eff01e74816bc (patch)
tree3937bc2718eb5d88bef39d910bea559d5acc977c
parent266b431ac303b280e31e9cc767db1d4d83569028 (diff)
test
-rw-r--r--Makefile2
-rw-r--r--tests/infix-to-prefix-tests.scm2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0d84f67..8f3e96a 100644
--- a/Makefile
+++ b/Makefile
@@ -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)