diff options
| -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 @@ | |||
| 85 | (`(,_ . ,_) (BAR)) | 85 | (`(,_ . ,_) (BAR)) |
| 86 | ('(a b) (FOO)))))) | 86 | ('(a b) (FOO)))))) |
| 87 | (let ((exp1 (macroexpand '(pcase EXP | 87 | (let ((exp1 (macroexpand '(pcase EXP |
| 88 | (`(`(,(or 'a1 'b1)) (FOO1))) | 88 | (`((,(or 'a1 'b1))) (FOO1)) |
| 89 | ('(c) (FOO2)) | 89 | ('(c) (FOO2)) |
| 90 | ('(d) (FOO3)))))) | 90 | ('(d) (FOO3)))))) |
| 91 | (should (= 1 (with-temp-buffer (prin1 exp1 (current-buffer)) | 91 | (should (= 1 (with-temp-buffer (prin1 exp1 (current-buffer)) |