diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-01 17:55:52 +0100 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-01 17:55:52 +0100 |
commit | 454184fd59e35f8608674b98b61732be061e10d4 (patch) | |
tree | d3eea8eea7b152700730a624cb61f772c83be3e5 /test | |
parent | ebe1f8916914b93af13b00ffd4bf15184121c76e (diff) | |
download | emacs-454184fd59e35f8608674b98b61732be061e10d4.tar.gz |
automated/package-test.el (package-test-update-archives): Fix test
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 1 | ||||
-rw-r--r-- | test/automated/package-test.el | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index f722ce2be33..f7bec2ee119 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,6 +1,7 @@ 2015-04-01 Artur Malabarba <bruce.connor.am@gmail.com> * automated/package-test.el: Avoid async while testing. + (package-test-update-archives): Fix test. 2015-03-27 Wolfgang Jenkner <wjenkner@inode.at> diff --git a/test/automated/package-test.el b/test/automated/package-test.el index 5be928fbe80..359f3541b41 100644 --- a/test/automated/package-test.el +++ b/test/automated/package-test.el @@ -326,7 +326,7 @@ Must called from within a `tar-mode' buffer." ;; New version should be available and old version should be installed (goto-char (point-min)) - (should (re-search-forward "^\\s-+simple-single\\s-+1.4\\s-+new" nil t)) + (should (re-search-forward "^\\s-+simple-single\\s-+1.4\\s-+available" nil t)) (should (re-search-forward "^\\s-+simple-single\\s-+1.3\\s-+installed" nil t)) (goto-char (point-min)) |