diff options
author | Gordon Sim <gsim@apache.org> | 2008-02-01 18:28:14 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-02-01 18:28:14 +0000 |
commit | 85352f8ead798a0f702f7204d502e8da48dc86d0 (patch) | |
tree | 93cbb14cd659401f29439032c142b72a5bc3d9a0 | |
parent | eea6348014bd53b882d1c6247580e6c6a07a1abd (diff) | |
download | qpid-python-85352f8ead798a0f702f7204d502e8da48dc86d0.tar.gz |
Use 'guest' as default uid and password for tests.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@617596 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/tests/TestOptions.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/tests/TestOptions.h b/cpp/src/tests/TestOptions.h index 3c3d13f3dd..87710964d6 100644 --- a/cpp/src/tests/TestOptions.h +++ b/cpp/src/tests/TestOptions.h @@ -37,8 +37,8 @@ struct TestOptions : public qpid::Options TestOptions(const std::string& helpText_=std::string()) : Options("Test Options"), host("localhost"), port(TcpAddress::DEFAULT_PORT), - clientid("cpp"), help(false), - helpText(helpText_) + clientid("cpp"), username("guest"), password("guest"), + help(false), helpText(helpText_) { addOptions() ("host,h", optValue(host, "HOST"), "Broker host to connect to") |