diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index a4b8b6655c..9602efebe7 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -1679,9 +1679,12 @@ (define* (installation-target-os-for-gui-tests ;; encryption support. The installer produces a UUID for the partition; ;; this "UUID" is explicitly set in 'gui-test-program' to the value shown ;; below. - (swap-devices (if encrypted? - '() - (list (uuid "11111111-2222-3333-4444-123456789abc")))) + (swap-devices + (if encrypted? + '() + (list + (swap-space + (target (uuid "11111111-2222-3333-4444-123456789abc")))))) (services (cons (service dhcp-client-service-type) (operating-system-user-services %minimal-os-on-vda)))))