Merge pull request #189999 from sbruder/test-driver-formatting-closed-port

nixos/test-driver: fix formatting of closed port
This commit is contained in:
Jacek Galowicz
2022-09-06 14:48:13 +02:00
committed by GitHub

View File

@@ -712,7 +712,7 @@ class Machine:
status, _ = self.execute("nc -z localhost {}".format(port))
return status != 0
with self.nested("waiting for TCP port {} to be closed"):
with self.nested("waiting for TCP port {} to be closed".format(port)):
retry(port_is_closed)
def start_job(self, jobname: str, user: Optional[str] = None) -> Tuple[int, str]: