diff options
Diffstat (limited to 'test-suite/tests')
-rw-r--r-- | test-suite/tests/elisp-compiler.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test-suite/tests/elisp-compiler.test b/test-suite/tests/elisp-compiler.test index 0d3a8b4b4..230dc772d 100644 --- a/test-suite/tests/elisp-compiler.test +++ b/test-suite/tests/elisp-compiler.test @@ -460,13 +460,13 @@ (flet ((foobar (lambda () 0)) (myfoo (symbol-function 'foobar))) (and (= (myfoo) 42) - (= (test) 0))) + (= (test) 42))) (flet* ((foobar (lambda () 0)) (myfoo (symbol-function 'foobar))) - (= (myfoo) 0)) + (= (myfoo) 42)) (flet (foobar) (defun foobar () 0) - (= (test) 0)) + (= (test) 42)) (= (test) 42))))) (with-test-prefix/compile "Calling Functions" |