summary refs log tree commit diff
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
parent4d41c371d47bc7f3d20403788bc43793d7c930a2 (diff)
downloadnixpkgs-3cd1bd588842b11521ecc7950dad884137b6c97b.tar
nixpkgs-3cd1bd588842b11521ecc7950dad884137b6c97b.tar.gz
nixpkgs-3cd1bd588842b11521ecc7950dad884137b6c97b.tar.bz2
nixpkgs-3cd1bd588842b11521ecc7950dad884137b6c97b.tar.lz
nixpkgs-3cd1bd588842b11521ecc7950dad884137b6c97b.tar.xz
nixpkgs-3cd1bd588842b11521ecc7950dad884137b6c97b.tar.zst
nixpkgs-3cd1bd588842b11521ecc7950dad884137b6c97b.zip
nixos/tests/gitlab: Fix a regression introduced in 15.7.0
```
{"message":{"password":["must not contain commonly used combinations of
words and letters"]}}
```
-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 d9d75d1cbd8..59dbc99052a 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";