about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorWinter <winter@winter.cafe>2022-07-20 00:24:05 -0400
committerGitHub <noreply@github.com>2022-07-20 00:24:05 -0400
commitfa9030465ef15598f526e22b8dd6f3c2a7bafcc4 (patch)
tree461883309df3d4e20fd5b999b3b6ebfa5b43a3a1 /nixos/tests
parent614a842b74b7a1497e8cfca7c61bec38f51911b3 (diff)
parentb81c81be13902fbc5ea5ad71cc5e757e0f2a7d11 (diff)
Merge pull request #182126 from pbsds/polaris-os-24
nixos/tests/polaris: fix type check fail
Diffstat (limited to 'nixos/tests')
-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'")
   '';