aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Gutov2013-06-27 13:51:55 +0400
committerDmitry Gutov2013-06-27 13:51:55 +0400
commit79f38c4eee230ca8d888e6babf98d5a1ad9bcb5f (patch)
treed32ad96e03bfefa07dbc50a3af4a65d93f9d6377
parent10a2da6ea4bb53fbe345ffe572e032621fc7e3e8 (diff)
downloademacs-79f38c4eee230ca8d888e6babf98d5a1ad9bcb5f.tar.gz
emacs-79f38c4eee230ca8d888e6babf98d5a1ad9bcb5f.zip
* test/automated/package-x-test.el: Change the commentary.
(package-x-test--single-archive-entry-1-3) (package-x-test--single-archive-entry-1-4): Fix the tests, by using the appropriate data structure.
-rw-r--r--test/ChangeLog3
-rwxr-xr-xtest/automated/package-x-test.el16
2 files changed, 11 insertions, 8 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index b939778255d..b884c43b858 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,6 +1,9 @@
12013-06-27 Dmitry Gutov <dgutov@yandex.ru> 12013-06-27 Dmitry Gutov <dgutov@yandex.ru>
2 2
3 * automated/package-x-test.el: Change the commentary. 3 * automated/package-x-test.el: Change the commentary.
4 (package-x-test--single-archive-entry-1-3)
5 (package-x-test--single-archive-entry-1-4): Fix the tests, by
6 using the appropriate data structure.
4 7
52013-06-27 Daniel Hackney <dan@haxney.org> 82013-06-27 Daniel Hackney <dan@haxney.org>
6 9
diff --git a/test/automated/package-x-test.el b/test/automated/package-x-test.el
index dbb8f6404aa..531c5b35021 100755
--- a/test/automated/package-x-test.el
+++ b/test/automated/package-x-test.el
@@ -44,17 +44,17 @@
44 (require 'package-test)) 44 (require 'package-test))
45 45
46(defvar package-x-test--single-archive-entry-1-3 46(defvar package-x-test--single-archive-entry-1-3
47 (package-desc-create :name 'simple-single 47 (cons 'simple-single
48 :version '(1 3) 48 (package-make-ac-desc '(1 3) nil
49 :summary "A single-file package with no dependencies" 49 "A single-file package with no dependencies"
50 :kind 'single) 50 'single))
51 "Expected contents of the archive entry from the \"simple-single\" package.") 51 "Expected contents of the archive entry from the \"simple-single\" package.")
52 52
53(defvar package-x-test--single-archive-entry-1-4 53(defvar package-x-test--single-archive-entry-1-4
54 (package-desc-create :name 'simple-single 54 (cons 'simple-single
55 :version '(1 4) 55 (package-make-ac-desc '(1 4) nil
56 :summary "A single-file package with no dependencies" 56 "A single-file package with no dependencies"
57 :kind 'single) 57 'single))
58 "Expected contents of the archive entry from the updated \"simple-single\" package.") 58 "Expected contents of the archive entry from the updated \"simple-single\" package.")
59 59
60(ert-deftest package-x-test-upload-buffer () 60(ert-deftest package-x-test-upload-buffer ()