diff options
| author | Gordon Sim <gsim@apache.org> | 2006-11-03 13:44:21 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2006-11-03 13:44:21 +0000 |
| commit | 15a915878c787e6d5ed8330a8dd4375ec885a6c0 (patch) | |
| tree | e580dbbeb7c61c4dc1a1348156c1970e09311b10 /cpp/test/unit/qpid/broker/ConfigurationTest.cpp | |
| parent | 20b96a39f539bf5181a58d1235f521d6a544bc47 (diff) | |
| download | qpid-python-15a915878c787e6d5ed8330a8dd4375ec885a6c0.tar.gz | |
Added some methods to MessageStore interface and hooked these in where appropriate.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@470810 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/test/unit/qpid/broker/ConfigurationTest.cpp')
| -rw-r--r-- | cpp/test/unit/qpid/broker/ConfigurationTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/unit/qpid/broker/ConfigurationTest.cpp b/cpp/test/unit/qpid/broker/ConfigurationTest.cpp index 7acee7c8b9..8fd252a9a9 100644 --- a/cpp/test/unit/qpid/broker/ConfigurationTest.cpp +++ b/cpp/test/unit/qpid/broker/ConfigurationTest.cpp @@ -60,8 +60,8 @@ class ConfigurationTest : public CppUnit::TestCase void testVarious() { Configuration conf; - char* argv[] = {"ignore", "-t", "--worker-threads", "10", "-a", "blocking"}; - conf.parse(6, argv); + char* argv[] = {"ignore", "-t", "--worker-threads", "10"}; + conf.parse(4, argv); CPPUNIT_ASSERT_EQUAL(5672, conf.getPort());//default CPPUNIT_ASSERT_EQUAL(10, conf.getWorkerThreads()); CPPUNIT_ASSERT(conf.isTrace()); |
