about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorKerstin Humm <kerstin@erictapen.name>2023-03-20 18:26:48 +0100
committerKerstin Humm <kerstin@erictapen.name>2023-03-20 18:26:48 +0100
commit424c98bf7852bdf208bc19068e98b0d7ba6c9aea (patch)
tree0d8daa66ee414e3b18f2fa964fda957d3582a043 /nixos
parent6d2eaecc8c29c54705d0f69db186c278e423b5a7 (diff)
nixos/gollum: fix deprecation warning
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/gollum.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/gollum.nix b/nixos/tests/gollum.nix
index 833db87f2f326..44d373e35262b 100644
--- a/nixos/tests/gollum.nix
+++ b/nixos/tests/gollum.nix
@@ -9,6 +9,6 @@ import ./make-test-python.nix ({ pkgs, ... }: {
 
   testScript = { nodes, ... }: ''
     webserver.wait_for_unit("gollum")
-    webserver.wait_for_open_port(${toString nodes.webserver.config.services.gollum.port})
+    webserver.wait_for_open_port(${toString nodes.webserver.services.gollum.port})
   '';
 })