From 11dbcc71340c99de6142b0e209ef32bee2a6f74d Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 27 Sep 2019 14:04:19 -0400 Subject: [PATCH] Use the value passed in to us --- nixos/modules/tests/run-introducer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/tests/run-introducer.py b/nixos/modules/tests/run-introducer.py index 40885590..9f032678 100755 --- a/nixos/modules/tests/run-introducer.py +++ b/nixos/modules/tests/run-introducer.py @@ -35,7 +35,7 @@ def main(): retry( "waiting for open introducer port", - lambda: checkOpen(35151), + lambda: checkOpen(int(introducerPort)), ) -- GitLab