diff options
author | Ted Ross <tross@apache.org> | 2009-08-25 19:33:38 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2009-08-25 19:33:38 +0000 |
commit | 4f2a9c0f979c62123ff16776944be86e933d19dd (patch) | |
tree | fa98d80e95aea65e1679e6f9cd5665541241555b /cpp/src/tests/MessagingSessionTests.cpp | |
parent | 0cc19da618b9cec6ad4653749f8a3d6dea066a06 (diff) | |
download | qpid-python-4f2a9c0f979c62123ff16776944be86e933d19dd.tar.gz |
Fixed minor issues from r807731 to build correctly on Fedora 10 (x86_64).
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@807779 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/MessagingSessionTests.cpp')
-rw-r--r-- | cpp/src/tests/MessagingSessionTests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/MessagingSessionTests.cpp b/cpp/src/tests/MessagingSessionTests.cpp index ef320c3ae0..6eebf717bf 100644 --- a/cpp/src/tests/MessagingSessionTests.cpp +++ b/cpp/src/tests/MessagingSessionTests.cpp @@ -274,7 +274,7 @@ QPID_AUTO_TEST_CASE(testSessionDispatch) s.send(msg); } - while (fix.session.dispatch(qpid::sys::TIME_SEC)); + while (fix.session.dispatch(qpid::sys::TIME_SEC)) ; BOOST_CHECK_EQUAL(collector.messageData, boost::assign::list_of<std::string>("Message_1")("Message_2")("Message_3")); } |