about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2023-07-27 15:18:11 +0200
committerajs124 <git@ajs124.de>2023-07-27 15:18:11 +0200
commit1d64486ba73822f4186149bfabfa404f9789f89e (patch)
tree8187e6fe53ff2231607730e985aee4b56211c6ef /nixos
parentc731a289ac786059df0592371577f57dbcb98ccb (diff)
nixos/tests/jenkins: fix deprecation warning
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/jenkins.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/jenkins.nix b/nixos/tests/jenkins.nix
index a1ede6dc917bf..a8f6210006547 100644
--- a/nixos/tests/jenkins.nix
+++ b/nixos/tests/jenkins.nix
@@ -73,8 +73,8 @@ import ./make-test-python.nix ({ pkgs, ...} : {
 
   testScript = { nodes, ... }:
     let
-      configWithoutJobs = "${nodes.master.config.system.build.toplevel}/specialisation/noJenkinsJobs";
-      jenkinsPort = nodes.master.config.services.jenkins.port;
+      configWithoutJobs = "${nodes.master.system.build.toplevel}/specialisation/noJenkinsJobs";
+      jenkinsPort = nodes.master.services.jenkins.port;
       jenkinsUrl = "http://localhost:${toString jenkinsPort}";
     in ''
     start_all()