1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

nixos/tests/polaris: fix type check fail

This test was introduced in a PR predating typechecking, but got merged afterwards.
This commit is contained in:
Peder Bergebakken Sundt 2022-07-19 21:12:14 +02:00
parent 02906974ec
commit b81c81be13

View file

@ -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'")
'';