diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-04-29 09:24:31 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-04-29 10:12:55 +0200 |
commit | be3abf28af02829cfd99c20ad8f0a86023554394 (patch) | |
tree | 51610f83b37f4a43fc64cf21c6fa3801b45e1566 /gnu/tests | |
parent | ae1a0f75831cfcc81d4875031407d2934317300b (diff) | |
download | patches-be3abf28af02829cfd99c20ad8f0a86023554394.tar patches-be3abf28af02829cfd99c20ad8f0a86023554394.tar.gz |
tests: install: Fix gui-installed-os test.
This is a follow-up of a860eddbbddeae5d3b6fe084e29ac9fafd2d6f02. If using an
ISO, the main disk is vda and not vdb anymore.
* gnu/tests/install.scm (installation-target-os-for-gui-tests): Use vda2 as
swap partition.
Diffstat (limited to 'gnu/tests')
-rw-r--r-- | gnu/tests/install.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index 3c6f6937ca..8650474fbc 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -1074,7 +1074,7 @@ build (current-guix) and then store a couple of full system images.") %base-user-accounts)) ;; The installer does not create a swap device in guided mode with ;; encryption support. - (swap-devices (if encrypted? '() '("/dev/vdb2"))) + (swap-devices (if encrypted? '() '("/dev/vda2"))) (services (cons (service dhcp-client-service-type) (operating-system-user-services %minimal-os))))) |