guix_mirror_bot pushed a commit to branch version-1.5.0 in repository guix.
commit 848fdc7d0998dbbedbd964966e1c57ba925a916a 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")
