diff options
author | Basil L. Contovounesios <contovob@tcd.ie> | 2020-06-21 12:50:34 +0100 |
---|---|---|
committer | Basil L. Contovounesios <contovob@tcd.ie> | 2020-06-21 12:50:34 +0100 |
commit | 4cc6854cd4b0857e223ed6bc1b1b1a051dd83480 (patch) | |
tree | 4809d5c25c6be4ebfb78099b30d26f564bf1e7b5 /test/lisp/emacs-lisp/package-tests.el | |
parent | a1b487eac0ec10059eb2b8c5e7efc9eec1342148 (diff) | |
download | emacs-4cc6854cd4b0857e223ed6bc1b1b1a051dd83480.tar.gz emacs-4cc6854cd4b0857e223ed6bc1b1b1a051dd83480.tar.bz2 emacs-4cc6854cd4b0857e223ed6bc1b1b1a051dd83480.zip |
Silence some warnings in tests
* test/lisp/emacs-lisp/package-tests.el
(package-test-suffix-matches): Evaluate lambda.
(package-test-list-filter-marked):
* test/lisp/vc/vc-tests.el
(vc-test--run-maybe-unsupported-function):
* test/src/undo-tests.el (undo-test-skip-invalidated-markers):
Silence "unused local variable" warnings.
* test/lisp/imenu-tests.el (imenu-simple-scan-deftest): Fix
docstring. Don't shadow global major-mode.
Diffstat (limited to 'test/lisp/emacs-lisp/package-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/package-tests.el | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/lisp/emacs-lisp/package-tests.el b/test/lisp/emacs-lisp/package-tests.el index 90714af3061..fecabba40f5 100644 --- a/test/lisp/emacs-lisp/package-tests.el +++ b/test/lisp/emacs-lisp/package-tests.el @@ -176,7 +176,7 @@ (defun package-test-suffix-matches (base suffix-list) "Return file names matching BASE concatenated with each item in SUFFIX-LIST" (cl-mapcan - '(lambda (item) (file-expand-wildcards (concat base item))) + (lambda (item) (file-expand-wildcards (concat base item))) suffix-list)) (defvar tar-parse-info) @@ -419,17 +419,17 @@ Must called from within a `tar-mode' buffer." (ert-deftest package-test-list-filter-marked () "Ensure package list is filtered correctly by non-empty mark." (with-package-test () - (let ((buf (package-list-packages))) - (revert-buffer) - (search-forward-regexp "^ +simple-single") - (package-menu-mark-install) - (package-menu-filter-marked) - (goto-char (point-min)) - (should (re-search-forward "^I +simple-single" nil t)) - (should (= (count-lines (point-min) (point-max)) 1)) - (package-menu-mark-unmark) - ;; No marked packages in default environment. - (should-error (package-menu-filter-marked))))) + (package-list-packages) + (revert-buffer) + (search-forward-regexp "^ +simple-single") + (package-menu-mark-install) + (package-menu-filter-marked) + (goto-char (point-min)) + (should (re-search-forward "^I +simple-single" nil t)) + (should (= (count-lines (point-min) (point-max)) 1)) + (package-menu-mark-unmark) + ;; No marked packages in default environment. + (should-error (package-menu-filter-marked)))) (ert-deftest package-test-list-filter-by-version () (with-package-menu-test |