diff options
author | Gordon Sim <gsim@apache.org> | 2008-05-02 16:18:02 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-05-02 16:18:02 +0000 |
commit | 5b929a5ec2d88b85e53c5b32906d0ed2ea135be1 (patch) | |
tree | b07373a07a1f11fca0d8414adeb437a3ea4ef776 /qpid/cpp/src/tests/ClientSessionTest.cpp | |
parent | 5354179079e0ee2091e2cc30bff2c23befb1c960 (diff) | |
download | qpid-python-5b929a5ec2d88b85e53c5b32906d0ed2ea135be1.tar.gz |
Use BOOST_CHECK_EQUAL in place of BOOST_REQUIRE_EQUAL (compatible with older boost)
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@652799 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/ClientSessionTest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/ClientSessionTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/ClientSessionTest.cpp b/qpid/cpp/src/tests/ClientSessionTest.cpp index 04cdee70c6..dfda9ecae1 100644 --- a/qpid/cpp/src/tests/ClientSessionTest.cpp +++ b/qpid/cpp/src/tests/ClientSessionTest.cpp @@ -157,7 +157,7 @@ QPID_AUTO_TEST_CASE(testDispatcherThread) fix.session.messageTransfer(content=TransferContent(lexical_cast<string>(i), "my-queue")); } t.join(); - BOOST_REQUIRE_EQUAL(count, listener.messages.size()); + BOOST_CHECK_EQUAL(count, listener.messages.size()); for (size_t i = 0; i < count; ++i) BOOST_CHECK_EQUAL(lexical_cast<string>(i), listener.messages[i].getData()); } |