about summary refs log tree commit diff
path: root/nixos/tests/gitlab.nix
diff options
context:
space:
mode:
authorYureka <yuka@yuka.dev>2023-05-25 10:01:45 +0200
committerYureka <yuka@yuka.dev>2023-05-31 22:14:25 +0200
commit82d9c2e91f88f17d75204b7819f6be533e4e93e9 (patch)
treebdbc09237aa206e1546cbfbbca2b384b5f1cca3c /nixos/tests/gitlab.nix
parent75a7e0edea7095bf40c24c6afd2f4bfd4dba76ad (diff)
nixosTests.gitlab: fix project ids
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 d4e7603c20caa..88cd774f815a5 100644
--- a/nixos/tests/gitlab.nix
+++ b/nixos/tests/gitlab.nix
@@ -19,13 +19,13 @@ let
   aliceUsername = "alice";
   aliceUserId = "2";
   alicePassword = "R5twyCgU0uXC71wT9BBTCqLs6HFZ7h3L";
-  aliceProjectId = "2";
+  aliceProjectId = "1";
   aliceProjectName = "test-alice";
 
   bobUsername = "bob";
   bobUserId = "3";
   bobPassword = "XwkkBbl2SiIwabQzgcoaTbhsotijEEtF";
-  bobProjectId = "3";
+  bobProjectId = "2";
 in {
   name = "gitlab";
   meta.maintainers = with lib.maintainers; [ globin yayayayaka ];