diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/infix-to-prefix-tests.scm | 2 |
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..70cd405 100644 --- a/tests/infix-to-prefix-tests.scm +++ b/tests/infix-to-prefix-tests.scm @@ -52,6 +52,6 @@ (infix->prefix '(- a * b))) (test-equal '(- (expt a 2)) - (infix->prefix '(- a ^ 2))) + (infix->prefix '(- a ^ 2 * 3))) (test-end "infix-to-prefix") |