From 053e10dfbc6f1b396e955cd90ba06a643f8dcf9c Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Sun, 5 Jun 2022 09:35:48 +0200 Subject: [PATCH] nixos/nitter: fix wait_for_open_port --- nixos/tests/nitter.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/nitter.nix b/nixos/tests/nitter.nix index 0e1a6d150f38..8bc55ba8c69f 100644 --- a/nixos/tests/nitter.nix +++ b/nixos/tests/nitter.nix @@ -12,7 +12,7 @@ import ./make-test-python.nix ({ pkgs, ... }: testScript = '' machine.wait_for_unit("nitter.service") - machine.wait_for_open_port("80") + machine.wait_for_open_port(80) machine.succeed("curl --fail http://localhost:80/") ''; })