From c08942e1ad495ec838965a886cb07c42b7e09f75 Mon Sep 17 00:00:00 2001 From: Winter Date: Mon, 6 Jun 2022 16:39:55 -0400 Subject: [PATCH] nixos/tests/radarr: fix type of argument in test script --- nixos/tests/radarr.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/radarr.nix b/nixos/tests/radarr.nix index ed90025ac420..85fd6572f061 100644 --- a/nixos/tests/radarr.nix +++ b/nixos/tests/radarr.nix @@ -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/") ''; })