diff options
author | Ted Ross <tross@apache.org> | 2009-02-12 18:10:23 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2009-02-12 18:10:23 +0000 |
commit | d066e62f23cf2019ca608116e5d2a61a8b36c281 (patch) | |
tree | a826812a1c5afbc31e0830fe4775241a6c8b8221 /cpp/src/tests/cli_tests.py | |
parent | 51d45ab0caf7c2e346ce19d6805e44ac9d984cce (diff) | |
download | qpid-python-d066e62f23cf2019ca608116e5d2a61a8b36c281.tar.gz |
Remove unicode when dealing with usernames and passwords in URLs.
This solves a problem seen with qpid-route when credentials are supplied.
A test was added to regression test.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@743819 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/cli_tests.py')
-rwxr-xr-x | cpp/src/tests/cli_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/cli_tests.py b/cpp/src/tests/cli_tests.py index 2f4f41eab5..a6304e8b3e 100755 --- a/cpp/src/tests/cli_tests.py +++ b/cpp/src/tests/cli_tests.py @@ -150,7 +150,7 @@ class CliTests(TestBase010): self.startQmf(); qmf = self.qmf - command = cli_dir() + "/qpid-route dynamic add localhost:%d %s:%d amq.topic" %\ + command = cli_dir() + "/qpid-route dynamic add guest/guest@localhost:%d %s:%d amq.topic" %\ (testrunner.port, remote_host(), remote_port()) ret = os.system(command) self.assertEqual(ret, 0) |