diff options
author | Noam Postavsky <npostavs@gmail.com> | 2018-07-15 00:06:29 -0400 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2018-07-15 00:15:52 -0400 |
commit | b1ebc123396f91b51e27f8c61a2cfe730ed202ad (patch) | |
tree | 8c326581d676d69edf1dff662f4cc93ef97b4304 /test/lisp | |
parent | 10a7e91956ebc5d808c88aecffb9d71a568d0233 (diff) | |
download | emacs-b1ebc123396f91b51e27f8c61a2cfe730ed202ad.tar.gz emacs-b1ebc123396f91b51e27f8c61a2cfe730ed202ad.tar.bz2 emacs-b1ebc123396f91b51e27f8c61a2cfe730ed202ad.zip |
Update package.el test for message format changes
* test/lisp/emacs-lisp/package-tests.el (package-test-signed): Update
the expected message. The message was changed in 2018-06-25 "Reformat
package.el message strings for future l10n".
(with-package-test, with-fake-help-buffer): Add debug declarations.
Diffstat (limited to 'test/lisp')
-rw-r--r-- | test/lisp/emacs-lisp/package-tests.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/lisp/emacs-lisp/package-tests.el b/test/lisp/emacs-lisp/package-tests.el index db8e1ae37e6..b1adfabe525 100644 --- a/test/lisp/emacs-lisp/package-tests.el +++ b/test/lisp/emacs-lisp/package-tests.el @@ -112,7 +112,7 @@ upload-base) &rest body) "Set up temporary locations and variables for testing." - (declare (indent 1)) + (declare (indent 1) (debug (([&rest form]) body))) `(let* ((package-test-user-dir (make-temp-file "pkg-test-user-dir-" t)) (process-environment (cons (format "HOME=%s" package-test-user-dir) process-environment)) @@ -158,6 +158,7 @@ (defmacro with-fake-help-buffer (&rest body) "Execute BODY in a temp buffer which is treated as the \"*Help*\" buffer." + (declare (debug body)) `(with-temp-buffer (help-mode) ;; Trick `help-buffer' into using the temp buffer. @@ -504,7 +505,7 @@ Must called from within a `tar-mode' buffer." (with-fake-help-buffer (describe-package 'signed-good) (goto-char (point-min)) - (should (re-search-forward "signed-good is an? \\(\\S-+\\) package." nil t)) + (should (re-search-forward "Package signed-good is \\(\\S-+\\)\\." nil t)) (should (string-equal (match-string-no-properties 1) "installed")) (should (re-search-forward "Status: Installed in ['`‘]signed-good-1.0/['’]." |