summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/run_interop_tests
diff options
context:
space:
mode:
authorJustin Ross <jross@apache.org>2016-04-21 22:29:16 +0000
committerJustin Ross <jross@apache.org>2016-04-21 22:29:16 +0000
commitaa92704be9e608a3437858ce9e9ced9a22e49f1f (patch)
treef5e2aa553fc0782694ea4d30b7ecc2a30ecc50d0 /qpid/cpp/src/tests/run_interop_tests
parentc1370cebea3c565bb87bd8119b902703680a71a7 (diff)
downloadqpid-python-aa92704be9e608a3437858ce9e9ced9a22e49f1f.tar.gz
QPID-7207: Use Python 2.6 compatible string formats
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1740424 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/run_interop_tests')
-rwxr-xr-xqpid/cpp/src/tests/run_interop_tests6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/tests/run_interop_tests b/qpid/cpp/src/tests/run_interop_tests
index 8cc918bba8..0a2e1425be 100755
--- a/qpid/cpp/src/tests/run_interop_tests
+++ b/qpid/cpp/src/tests/run_interop_tests
@@ -21,10 +21,10 @@
from common import *
-port = start_broker("broker", "--load-module {}".format(AMQP_LIB))
+port = start_broker("broker", "--load-module {0}".format(AMQP_LIB))
-ENV["QPID_INTEROP_URL"] = "localhost:{}".format(port)
+ENV["QPID_INTEROP_URL"] = "localhost:{0}".format(port)
-call("qpid-python-test -m interop_tests -DOUTDIR={}", WORK_DIR)
+call("qpid-python-test -m interop_tests -DOUTDIR={0}", WORK_DIR)
check_results()