diff options
Diffstat (limited to 'test')
| -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 774a488255d..c706c1051e3 100644 --- a/test/lisp/emacs-lisp/pcase-tests.el +++ b/test/lisp/emacs-lisp/pcase-tests.el | |||
| @@ -53,7 +53,7 @@ | |||
| 53 | (should (pcase-tests-grep | 53 | (should (pcase-tests-grep |
| 54 | 'memq (macroexpand-all '(pcase x ((or 1 2 3) body))))) | 54 | 'memq (macroexpand-all '(pcase x ((or 1 2 3) body))))) |
| 55 | (should (pcase-tests-grep | 55 | (should (pcase-tests-grep |
| 56 | 'member (macroexpand-all '(pcase x ((or '"a" '2 '3) body))))) | 56 | 'member (macroexpand-all '(pcase x ((or "a" 2 3) body))))) |
| 57 | (should-not (pcase-tests-grep | 57 | (should-not (pcase-tests-grep |
| 58 | 'memq (macroexpand-all '(pcase x ((or "a" 2 3) body))))) | 58 | 'memq (macroexpand-all '(pcase x ((or "a" 2 3) body))))) |
| 59 | (let ((exp (macroexpand-all | 59 | (let ((exp (macroexpand-all |