about summary refs log tree commit diff
path: root/nixos/tests/gitlab.nix
diff options
context:
space:
mode:
authorYaya <mak@nyantec.com>2022-12-27 14:54:27 +0000
committerWinter <winter@winter.cafe>2023-01-10 22:53:33 -0500
commit3cd1bd588842b11521ecc7950dad884137b6c97b (patch)
treeb1d0e145ef2ff617323fda500e23dbf1f774dd68 /nixos/tests/gitlab.nix
parent4d41c371d47bc7f3d20403788bc43793d7c930a2 (diff)
nixos/tests/gitlab: Fix a regression introduced in 15.7.0
```
{"message":{"password":["must not contain commonly used combinations of
words and letters"]}}
```
Diffstat (limited to 'nixos/tests/gitlab.nix')
-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 d9d75d1cbd89b..59dbc99052a60 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";