nixos/tests/radarr: fix type of argument in test script

This commit is contained in:
Winter 2022-06-06 16:39:55 -04:00
parent 965c2e12e7
commit c08942e1ad

View File

@ -12,7 +12,7 @@ with lib;
testScript = ''
machine.wait_for_unit("radarr.service")
machine.wait_for_open_port("7878")
machine.wait_for_open_port(7878)
machine.succeed("curl --fail http://localhost:7878/")
'';
})