This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 1d455fb8bf tests: install: Fix timezone check.
1d455fb8bf is described below
commit 1d455fb8bff2efe95391258e5986e02f8b4e0e70
Author: NoƩ Lopez <[email protected]>
AuthorDate: Fri Dec 19 20:08:59 2025 +0100
tests: install: Fix timezone check.
The default timezone is set to Europe/Zaghreb, however the new check
introduced in 0a9eb3f3e2b7a08e6df4db44bc6fd56f2cd34173 was checking for the
one in the operating-system definition, which is Europe/Paris.
* gnu/tests/install.scm (gui-test-program): Explicitely set timezone to
Europe/Paris.
Change-Id: I7b5d327f13760632c9fbc0c1223a6a9bbc624f4d
Signed-off-by: Rutherther <[email protected]>
Merges: #4977
---
gnu/tests/install.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm
index 1bf7ebcb80..0bcf145898 100644
--- a/gnu/tests/install.scm
+++ b/gnu/tests/install.scm
@@ -1901,7 +1901,9 @@ build (current-guix) and then store a couple of full
system images.")
#$marionette)
(screenshot "installer-start.ppm")
- (marionette-eval* '(choose-locale+keyboard installer-socket)
+ (marionette-eval* '(choose-locale+keyboard
+ installer-socket
+ #:timezone '("Europe" "Paris"))
#$marionette)
(screenshot "installer-locale.ppm")