summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYaya <mak@nyantec.com>2022-12-27 14:54:27 +0000
committerWinter <winter@winter.cafe>2023-01-11 22:17:09 -0500
commit8547ffbfd182b323bfd523f11bbd356e9718521a (patch)
tree9378801cec593db4a970dbadde92837cb14c18bf
parent649b2e240776c377258b471fb01ce0222f633aa3 (diff)
nixos/tests/gitlab: Fix a regression introduced in 15.7.0
``` {"message":{"password":["must not contain commonly used combinations of words and letters"]}} ``` (cherry picked from commit 3cd1bd588842b11521ecc7950dad884137b6c97b)
-rw-r--r--nixos/tests/gitlab.nix4
1 files 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";