]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix byte-compiler warnings in tests
authorGerd Möllmann <gerd@gnu.org>
Sat, 29 Oct 2022 12:26:28 +0000 (14:26 +0200)
committerGerd Möllmann <gerd@gnu.org>
Sat, 29 Oct 2022 12:26:28 +0000 (14:26 +0200)
* test/src/pkg-tests.el (pkg-tests-*package*): Fix empty let.
(pkg-tests-use-package): Make local var status ignored.

test/src/pkg-tests.el

index df44859fa425bb7406fa80a634ffebed7222bcb8..9ddef8ebc787d3a653d597e328867c90933d1f31 100644 (file)
@@ -49,7 +49,7 @@
 (ert-deftest pkg-tests-*package* ()
   (should (eq (let ((*package* (find-package "emacs"))) 'good) 'good))
   (should-error (let ((*package* :emacs)) nil))
-  (should-error (let ((*package* 1))))
+  (should-error (let ((*package* 1)) nil))
   (should-error (setq *package* :keyword))
   (should-error (makunbound *package*))
   (with-temp-buffer
     (let ((sym-a (intern "a" x)))
       (should (eq (symbol-package sym-a) x))
       (use-package x y)
-      (cl-multiple-value-bind (sym status)
+      (cl-multiple-value-bind (sym _status)
           (find-symbol "a" y)
         (should (null sym))
         (when nil