From: Dmitry Gutov Date: Thu, 27 Jun 2013 09:51:55 +0000 (+0400) Subject: * test/automated/package-x-test.el: Change the commentary. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1992^2~9 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=79f38c4eee230ca8d888e6babf98d5a1ad9bcb5f;p=emacs.git * 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. --- diff --git a/test/ChangeLog b/test/ChangeLog index b939778255d..b884c43b858 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,6 +1,9 @@ 2013-06-27 Dmitry Gutov * 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. 2013-06-27 Daniel Hackney 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 @@ (require 'package-test)) (defvar package-x-test--single-archive-entry-1-3 - (package-desc-create :name 'simple-single - :version '(1 3) - :summary "A single-file package with no dependencies" - :kind 'single) + (cons 'simple-single + (package-make-ac-desc '(1 3) nil + "A single-file package with no dependencies" + 'single)) "Expected contents of the archive entry from the \"simple-single\" package.") (defvar package-x-test--single-archive-entry-1-4 - (package-desc-create :name 'simple-single - :version '(1 4) - :summary "A single-file package with no dependencies" - :kind 'single) + (cons 'simple-single + (package-make-ac-desc '(1 4) nil + "A single-file package with no dependencies" + 'single)) "Expected contents of the archive entry from the updated \"simple-single\" package.") (ert-deftest package-x-test-upload-buffer ()