diff options
Diffstat (limited to 'test/lisp/emacs-lisp/pcase-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/pcase-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/pcase-tests.el b/test/lisp/emacs-lisp/pcase-tests.el index e777b71920c..5f2927d1aff 100644 --- a/test/lisp/emacs-lisp/pcase-tests.el +++ b/test/lisp/emacs-lisp/pcase-tests.el @@ -85,7 +85,7 @@ (`(,_ . ,_) (BAR)) ('(a b) (FOO)))))) (let ((exp1 (macroexpand '(pcase EXP - (`(`(,(or 'a1 'b1)) (FOO1))) + (`((,(or 'a1 'b1))) (FOO1)) ('(c) (FOO2)) ('(d) (FOO3)))))) (should (= 1 (with-temp-buffer (prin1 exp1 (current-buffer)) |