summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/ClientSessionTest.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-05-26 21:02:59 +0000
committerAlan Conway <aconway@apache.org>2008-05-26 21:02:59 +0000
commit920ac8dc4eb1be2b64fda528a9ef52b047532350 (patch)
treea106956ba59cdc8549ace5113ee1ede8b3593988 /qpid/cpp/src/tests/ClientSessionTest.cpp
parenta7ebef746a0a312d49eae6b9cf10c7f02293acb5 (diff)
downloadqpid-python-920ac8dc4eb1be2b64fda528a9ef52b047532350.tar.gz
Removed BOOST_REQUIRE_EQUAL, not available in older boost.test.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@660304 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/ClientSessionTest.cpp')
-rw-r--r--qpid/cpp/src/tests/ClientSessionTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/ClientSessionTest.cpp b/qpid/cpp/src/tests/ClientSessionTest.cpp
index 1dade47ee9..83c3317094 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());
}