summary refs log tree commit diff
path: root/nixos/tests/rabbitmq.nix
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2022-06-11 14:22:53 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2022-06-11 14:22:53 +0200
commit580370666239e426df70ab4996dc5b5512a2c303 (patch)
tree2b7b01275f7a2b958eab7737b7eb0d4a4ce677a1 /nixos/tests/rabbitmq.nix
parent6bd5219cc1a2a9a6d703f80d8b473c0c25f22a3e (diff)
downloadnixpkgs-580370666239e426df70ab4996dc5b5512a2c303.tar
nixpkgs-580370666239e426df70ab4996dc5b5512a2c303.tar.gz
nixpkgs-580370666239e426df70ab4996dc5b5512a2c303.tar.bz2
nixpkgs-580370666239e426df70ab4996dc5b5512a2c303.tar.lz
nixpkgs-580370666239e426df70ab4996dc5b5512a2c303.tar.xz
nixpkgs-580370666239e426df70ab4996dc5b5512a2c303.tar.zst
nixpkgs-580370666239e426df70ab4996dc5b5512a2c303.zip
nixos/tests: fix type mismatch in wait_for_open_port
Fix some fallout from de3e423 (PR #171280).
Diffstat (limited to 'nixos/tests/rabbitmq.nix')
-rw-r--r--nixos/tests/rabbitmq.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/rabbitmq.nix b/nixos/tests/rabbitmq.nix
index 831335d8c51..f8e8e61c47d 100644
--- a/nixos/tests/rabbitmq.nix
+++ b/nixos/tests/rabbitmq.nix
@@ -22,6 +22,6 @@ import ./make-test-python.nix ({ pkgs, ... }: {
     machine.wait_until_succeeds(
         'su -s ${pkgs.runtimeShell} rabbitmq -c "rabbitmqctl status"'
     )
-    machine.wait_for_open_port("15672")
+    machine.wait_for_open_port(15672)
   '';
 })