You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by kg...@apache.org on 2019/11/01 14:45:12 UTC

[qpid-dispatch] branch master updated: NO-JIRA: fix syntax error in system_test.py

This is an automated email from the ASF dual-hosted git repository.

kgiusti pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/master by this push:
     new eb12bac  NO-JIRA: fix syntax error in system_test.py
eb12bac is described below

commit eb12bacbae279a40ddf9b3e34e24c7fc97642dd3
Author: Kenneth Giusti <kg...@apache.org>
AuthorDate: Fri Nov 1 10:45:01 2019 -0400

    NO-JIRA: fix syntax error in system_test.py
---
 tests/system_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/system_test.py b/tests/system_test.py
index 327ccf2..33cb925 100755
--- a/tests/system_test.py
+++ b/tests/system_test.py
@@ -205,7 +205,7 @@ def wait_port(port, protocol_family='IPv4', **retry_kwargs):
     try:
         retry_exception(connect, exception_test=check, **retry_kwargs)
     except Exception as e:
-        raise Exception("wait_port timeout on host %s port %s: %s"%(host, port, e))
+        raise Exception("wait_port timeout on port %s: %s" % (port, e))
 
 def wait_ports(ports, **retry_kwargs):
     """Wait up to timeout for all ports (on host) to be connectable.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org