aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/infix-to-prefix-tests.scm3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/infix-to-prefix-tests.scm b/tests/infix-to-prefix-tests.scm
index 0487322..18d9022 100644
--- a/tests/infix-to-prefix-tests.scm
+++ b/tests/infix-to-prefix-tests.scm
@@ -39,9 +39,6 @@
(test-equal '(- a (- b c))
(infix->prefix '(a - (b - c))))
-(test-equal '(+ (- a b) (- c d))
- (infix->prefix '(a - b + c - d)))
-
(test-equal '(- (+ (- a b) c) d)
(infix->prefix '(a - b + c - d)))