nixos/test-driver: fix formatting of closed port

Co-authored-by: a-kenji <aks.kenji@protonmail.com>
This commit is contained in:
Simon Bruder 2022-09-06 14:32:09 +02:00
parent 9e4474136d
commit 9caf5f6ba9
No known key found for this signature in database
GPG key ID: 8D3C82F9F309F8EC

View file

@ -710,7 +710,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]: