about summary refs log tree commit diff
path: root/nixos/tests/polaris.nix
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2022-07-19 21:12:14 +0200
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2022-07-19 21:12:14 +0200
commitb81c81be13902fbc5ea5ad71cc5e757e0f2a7d11 (patch)
tree3dbc0e29f26db4cd2267c288d2a17500c73ee410 /nixos/tests/polaris.nix
parent02906974ec37d5a85bcdfe023f50b9a86ff9a391 (diff)
nixos/tests/polaris: fix type check fail
This test was introduced in a PR predating typechecking, but got merged afterwards.
Diffstat (limited to 'nixos/tests/polaris.nix')
-rw-r--r--nixos/tests/polaris.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/polaris.nix b/nixos/tests/polaris.nix
index 62f0fb6a9c207..fb2e67f075aac 100644
--- a/nixos/tests/polaris.nix
+++ b/nixos/tests/polaris.nix
@@ -24,7 +24,7 @@ with lib;
 
   testScript = ''
     machine.wait_for_unit("polaris.service")
-    machine.wait_for_open_port("5050")
+    machine.wait_for_open_port(5050)
     machine.succeed("curl http://localhost:5050/api/version")
     machine.succeed("curl -X GET http://localhost:5050/api/initial_setup -H  'accept: application/json' | jq -e '.has_any_users == true'")
   '';