From 79f38c4eee230ca8d888e6babf98d5a1ad9bcb5f Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Thu, 27 Jun 2013 13:51:55 +0400 Subject: [PATCH] * 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. --- test/ChangeLog | 3 +++ test/automated/package-x-test.el | 16 ++++++++-------- 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 @@ 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 () -- 2.39.2