diff options
author | Gordon Sim <gsim@apache.org> | 2010-01-19 08:29:24 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2010-01-19 08:29:24 +0000 |
commit | 29745628ade582e3ae244f2cbf1c58b92b163755 (patch) | |
tree | 180088d340bf05ec4d7b625b70bb252ab059aafc /qpid/cpp/src | |
parent | 781629ebe94318e506567e28cd01b5666d29a819 (diff) | |
download | qpid-python-29745628ade582e3ae244f2cbf1c58b92b163755.tar.gz |
QPID-2335: Set the timeout used when waiting for a message to be 1 second which I assume was the original intention.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@900697 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r-- | qpid/cpp/src/tests/XmlClientSessionTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/XmlClientSessionTest.cpp b/qpid/cpp/src/tests/XmlClientSessionTest.cpp index d64c5e47f0..95a40bb777 100644 --- a/qpid/cpp/src/tests/XmlClientSessionTest.cpp +++ b/qpid/cpp/src/tests/XmlClientSessionTest.cpp @@ -130,7 +130,7 @@ QPID_AUTO_TEST_CASE(testXmlBinding) { f.session.messageTransfer(qpid::client::arg::content=message, qpid::client::arg::destination="xml"); - Message m2 = localQueue.get(1); + Message m2 = localQueue.get(1*qpid::sys::TIME_SEC); BOOST_CHECK_EQUAL(m, m2.getData()); } |