summaryrefslogtreecommitdiff
path: root/cpp/src
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
commitaaa31ef665147973b3367110db9c0810fb144d9e (patch)
treefc105e8ef071734138277848cf464ed7700380ad /cpp/src
parenta22d40e868c956a92f92abcbc30dfd14d20bd98f (diff)
downloadqpid-python-aaa31ef665147973b3367110db9c0810fb144d9e.tar.gz
Removed BOOST_REQUIRE_EQUAL, not available in older boost.test.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@660304 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/tests/ClientSessionTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/ClientSessionTest.cpp b/cpp/src/tests/ClientSessionTest.cpp
index 1dade47ee9..83c3317094 100644
--- a/cpp/src/tests/ClientSessionTest.cpp
+++ b/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());
}