summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-10-02 09:38:46 +0200
committerLudovic Courtès <ludo@gnu.org>2020-10-02 09:43:05 +0200
commitcc346931523a7235a8093ec96f05412d5f2f468d (patch)
tree26473dedcc641fe4a0df93179504826a127ce6e6 /tests
parent9471aea76ace5c0998d889fc5fbde7a6bcafc654 (diff)
downloadguix-cc346931523a7235a8093ec96f05412d5f2f468d.tar.gz
tests: Adjust to recent changes to the 'emacs' package.
Test regression introduced in f88fea0eaa5796303790450ee4543a6d7e61a06e.

* tests/guix-package.sh: Add minor and patch levels in the version
numbers of 'emacs-foo-bar' and 'emacs-foo-bar-patched'.
Diffstat (limited to 'tests')
-rw-r--r--tests/guix-package.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/guix-package.sh b/tests/guix-package.sh
index 1a95b8e9a4..a43496699b 100644
--- a/tests/guix-package.sh
+++ b/tests/guix-package.sh
@@ -1,5 +1,5 @@
 # GNU Guix --- Functional package management for GNU
-# Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
+# Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
 # Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
 #
 # This file is part of GNU Guix.
@@ -257,7 +257,7 @@ cat > "$module_dir/foo.scm"<<EOF
 (define-public x
   (package (inherit emacs)
     (name "emacs-foo-bar")
-    (version "42")))
+    (version "42.77.0")))
 EOF
 
 guix package -A emacs-foo-bar -L "$module_dir" | grep 42
@@ -298,7 +298,7 @@ cat > "$module_dir/foo.scm"<<EOF
     (source (origin (inherit (package-source emacs))
               (patches (list (search-patch "emacs.patch")))))
     (name "emacs-foo-bar-patched")
-    (version "42")))
+    (version "42.42.42")))
 
 (define-public y
   (package (inherit emacs)