Commit c08942e1 authored by Winter's avatar Winter
Browse files

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

parent 965c2e12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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/")
  '';
})