From b81c81be13902fbc5ea5ad71cc5e757e0f2a7d11 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Tue, 19 Jul 2022 21:12:14 +0200 Subject: [PATCH] nixos/tests/polaris: fix type check fail This test was introduced in a PR predating typechecking, but got merged afterwards. --- nixos/tests/polaris.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/polaris.nix b/nixos/tests/polaris.nix index 62f0fb6a9c20..fb2e67f075aa 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'") '';