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 | 8be19101e65ccc0808b0a5fff3adb16039eddf7e (patch) | |
tree | 5585340d23b841380ebcf4375f9486d8214f3b98 /cpp/src/tests/QueueTest.cpp | |
parent | 659e9247b9059f8d2b9fe29d2f88170c4cd197c1 (diff) | |
download | qpid-python-8be19101e65ccc0808b0a5fff3adb16039eddf7e.tar.gz |
Fix for signed-unsigned mismatch in test
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@814020 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/QueueTest.cpp')
-rw-r--r-- | cpp/src/tests/QueueTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/tests/QueueTest.cpp b/cpp/src/tests/QueueTest.cpp index b6932434b6..378c0471da 100644 --- a/cpp/src/tests/QueueTest.cpp +++ b/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); |