From: Mattias EngdegÄrd Date: Tue, 3 Jan 2023 13:26:44 +0000 (+0100) Subject: ; * cl-lib-tests.el: Suppress for the right function. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cfc0e1cc02976d82285166fa35d69c6af5a430d8;p=emacs.git ; * cl-lib-tests.el: Suppress for the right function. --- diff --git a/test/lisp/emacs-lisp/cl-lib-tests.el b/test/lisp/emacs-lisp/cl-lib-tests.el index 6668be8ee70..4e1a0fd63a2 100644 --- a/test/lisp/emacs-lisp/cl-lib-tests.el +++ b/test/lisp/emacs-lisp/cl-lib-tests.el @@ -431,7 +431,7 @@ (should (eq nums (cdr (cl-adjoin 3 nums)))) ;; add only when not already there (should (eq nums (cl-adjoin 2 nums))) - (with-suppressed-warnings ((suspicious eq)) + (with-suppressed-warnings ((suspicious memql)) (should (equal '(2 1 (2)) (cl-adjoin 2 '(1 (2)))))) ;; default test function is eql (should (equal '(1.0 1 2) (cl-adjoin 1.0 nums)))