about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--nixos/tests/n8n.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/n8n.nix b/nixos/tests/n8n.nix
index ed93639f2a42..c1753a418f67 100644
--- a/nixos/tests/n8n.nix
+++ b/nixos/tests/n8n.nix
@@ -7,7 +7,7 @@ let
 in
 {
   name = "n8n";
-  meta.maintainers = with maintainers; [ freezeboy ];
+  meta.maintainers = with maintainers; [ freezeboy k900 ];
 
   nodes.machine =
     { pkgs, ... }:
@@ -19,7 +19,7 @@ in
 
   testScript = ''
     machine.wait_for_unit("n8n.service")
-    machine.wait_for_open_port("${toString port}")
+    machine.wait_for_open_port(${toString port})
     machine.succeed("curl --fail http://localhost:${toString port}/")
   '';
 })