about summary refs log tree commit diff
path: root/nixos/tests/nitter.nix
diff options
context:
space:
mode:
authorAlexandre Iooss <erdnaxe@crans.org>2022-06-05 09:35:48 +0200
committerAlexandre Iooss <erdnaxe@crans.org>2022-06-05 09:35:48 +0200
commit053e10dfbc6f1b396e955cd90ba06a643f8dcf9c (patch)
tree7c44fc0bc36e6a9dcdfadfa148141e8495c6732c /nixos/tests/nitter.nix
parent184698391da61e155fd630fb90207089ca49c14e (diff)
nixos/nitter: fix wait_for_open_port
Diffstat (limited to 'nixos/tests/nitter.nix')
-rw-r--r--nixos/tests/nitter.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/nitter.nix b/nixos/tests/nitter.nix
index 0e1a6d150f38e..8bc55ba8c69fc 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/")
   '';
 })