summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2013-10-09 15:35:00 +0000
committerAndrew Stitcher <astitcher@apache.org>2013-10-09 15:35:00 +0000
commit7e9151221f24c6fdb11e00bd79a01a51f7c24b82 (patch)
tree64abe7e661a81267e8d56b33cfff961fbd26ebc9 /qpid/cpp/src/tests
parentba5c0d2065986bf39225b96c23f0f129f42a718a (diff)
downloadqpid-python-7e9151221f24c6fdb11e00bd79a01a51f7c24b82.tar.gz
QPID-4582: Fixed unit legacystore unit test to remove warning under RHEL5
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1530681 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests')
-rw-r--r--qpid/cpp/src/tests/legacystore/SimpleTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/legacystore/SimpleTest.cpp b/qpid/cpp/src/tests/legacystore/SimpleTest.cpp
index e03e005c3b..c769bdeb75 100644
--- a/qpid/cpp/src/tests/legacystore/SimpleTest.cpp
+++ b/qpid/cpp/src/tests/legacystore/SimpleTest.cpp
@@ -235,8 +235,8 @@ QPID_AUTO_TEST_CASE(QueueCreateWithSettings)
recover(store, registry);
Queue::shared_ptr queue = registry.find(name);
BOOST_REQUIRE(queue);
- BOOST_CHECK_EQUAL(settings.maxDepth.getCount(), 202);
- BOOST_CHECK_EQUAL(settings.maxDepth.getSize(), 1003);
+ BOOST_CHECK_EQUAL(settings.maxDepth.getCount(), 202u);
+ BOOST_CHECK_EQUAL(settings.maxDepth.getSize(), 1003u);
BOOST_CHECK_EQUAL(settings.maxDepth.getCount(), queue->getSettings().maxDepth.getCount());
BOOST_CHECK_EQUAL(settings.maxDepth.getSize(), queue->getSettings().maxDepth.getSize());
}