diff options
author | Kim van der Riet <kpvdr@apache.org> | 2009-09-11 20:40:29 +0000 |
---|---|---|
committer | Kim van der Riet <kpvdr@apache.org> | 2009-09-11 20:40:29 +0000 |
commit | 94a8e4beed2f2f42f357b445deba27a2b1e1329b (patch) | |
tree | 37db9ad31ea362c4b9496e212bf3e39d8756a4e8 /qpid/cpp/src/tests/QueueTest.cpp | |
parent | cdce957c7886960983c281914229fdddc3299a2b (diff) | |
download | qpid-python-94a8e4beed2f2f42f357b445deba27a2b1e1329b.tar.gz |
Fix for signed-unsigned mismatch in test
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@814020 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/QueueTest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/QueueTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/QueueTest.cpp b/qpid/cpp/src/tests/QueueTest.cpp index b6932434b6..378c0471da 100644 --- a/qpid/cpp/src/tests/QueueTest.cpp +++ b/qpid/cpp/src/tests/QueueTest.cpp @@ -828,8 +828,8 @@ QPID_AUTO_TEST_CASE(testFlowToDiskMsgProperties){ fanout1.route(dmsg3, "", 0); msg3->releaseContent(); - BOOST_CHECK_EQUAL(3, queue1->getMessageCount()); - BOOST_CHECK_EQUAL(3, queue2->getMessageCount()); + BOOST_CHECK_EQUAL(3u, queue1->getMessageCount()); + BOOST_CHECK_EQUAL(3u, queue2->getMessageCount()); BOOST_CHECK_EQUAL(msg1->isContentReleased(), false); BOOST_CHECK_EQUAL(msg2->isContentReleased(), true); BOOST_CHECK_EQUAL(msg3->isContentReleased(), true); |