diff options
| author | Justin Ross <jross@apache.org> | 2016-04-21 22:29:16 +0000 |
|---|---|---|
| committer | Justin Ross <jross@apache.org> | 2016-04-21 22:29:16 +0000 |
| commit | aa92704be9e608a3437858ce9e9ced9a22e49f1f (patch) | |
| tree | f5e2aa553fc0782694ea4d30b7ecc2a30ecc50d0 /qpid/cpp/src/tests/run_cli_tests | |
| parent | c1370cebea3c565bb87bd8119b902703680a71a7 (diff) | |
| download | qpid-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_cli_tests')
| -rwxr-xr-x | qpid/cpp/src/tests/run_cli_tests | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qpid/cpp/src/tests/run_cli_tests b/qpid/cpp/src/tests/run_cli_tests index 54517e0ef0..2d2eabacb2 100755 --- a/qpid/cpp/src/tests/run_cli_tests +++ b/qpid/cpp/src/tests/run_cli_tests @@ -42,7 +42,7 @@ xquery_file = write(join(WORK_DIR, "xquery_file"), xquery) # similar here. if XML_LIB is not None: - broker_args = "--load-module {}".format(XML_LIB) + broker_args = "--load-module {0}".format(XML_LIB) test_args = "" else: notice("Ignoring XML tests") @@ -55,9 +55,9 @@ remote_port = start_broker("remote", broker_args) run_broker_tests(local_port, "-m cli_tests", - "-Dremote-port={}".format(remote_port), - "-Dcli-dir={}".format(cli_dir), - "-Dxquery-file={}".format(xquery_file), + "-Dremote-port={0}".format(remote_port), + "-Dcli-dir={0}".format(cli_dir), + "-Dxquery-file={0}".format(xquery_file), test_args) check_results() |
