From 3cd1bd588842b11521ecc7950dad884137b6c97b Mon Sep 17 00:00:00 2001 From: Yaya Date: Tue, 27 Dec 2022 14:54:27 +0000 Subject: [PATCH] nixos/tests/gitlab: Fix a regression introduced in 15.7.0 ``` {"message":{"password":["must not contain commonly used combinations of words and letters"]}} ``` --- nixos/tests/gitlab.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/gitlab.nix b/nixos/tests/gitlab.nix index d9d75d1cbd89..59dbc99052a6 100644 --- a/nixos/tests/gitlab.nix +++ b/nixos/tests/gitlab.nix @@ -17,13 +17,13 @@ let aliceUsername = "alice"; aliceUserId = "2"; - alicePassword = "alicepassword"; + alicePassword = "R5twyCgU0uXC71wT9BBTCqLs6HFZ7h3L"; aliceProjectId = "2"; aliceProjectName = "test-alice"; bobUsername = "bob"; bobUserId = "3"; - bobPassword = "bobpassword"; + bobPassword = "XwkkBbl2SiIwabQzgcoaTbhsotijEEtF"; bobProjectId = "3"; in { name = "gitlab";