aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lisp/emacs-lisp/pcase-tests.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/pcase-tests.el b/test/lisp/emacs-lisp/pcase-tests.el
index 1e9d37fbfa9..af8c9a3f3c3 100644
--- a/test/lisp/emacs-lisp/pcase-tests.el
+++ b/test/lisp/emacs-lisp/pcase-tests.el
@@ -51,11 +51,13 @@
51 51
52(ert-deftest pcase-tests-member () 52(ert-deftest pcase-tests-member ()
53 (should (pcase-tests-grep 53 (should (pcase-tests-grep
54 'memq (macroexpand-all '(pcase x ((or 1 2 3) body))))) 54 'memql (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 (should-not (pcase-tests-grep
60 'memql (macroexpand-all '(pcase x ((or "a" 2 3) body)))))
59 (let ((exp (macroexpand-all 61 (let ((exp (macroexpand-all
60 '(pcase x 62 '(pcase x
61 ("a" body1) 63 ("a" body1)