about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2022-06-07 23:46:49 +0300
committerK900 <me@0upti.me>2022-06-09 08:19:42 +0300
commitc54c71b4ecbff6873435bb60d484ab4d63bad620 (patch)
tree615110a4a10160cce2ac88b822eb2df7a56dd3a8 /nixos
parentfe5ff7c413bb1bb121638334df5d32262e2a033d (diff)
n8n: fix test
Diffstat (limited to 'nixos')
-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 ed93639f2a429..c1753a418f673 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}/")
   '';
 })