From 424c98bf7852bdf208bc19068e98b0d7ba6c9aea Mon Sep 17 00:00:00 2001 From: Kerstin Humm Date: Mon, 20 Mar 2023 18:26:48 +0100 Subject: [PATCH] nixos/gollum: fix deprecation warning --- nixos/tests/gollum.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/gollum.nix b/nixos/tests/gollum.nix index 833db87f2f32..44d373e35262 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}) ''; })