summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2015-08-20 07:32:52 +0000
committerAndrew Stitcher <astitcher@apache.org>2015-08-20 07:32:52 +0000
commit4f0f4b600767cb657cab6efb68be3f980dbd1fce (patch)
treedca283d9e0c4328321e217fd11c00a563d3a3720 /qpid/cpp/src/tests
parent4cf412a0ae0e55090ceebec06debc5b210ddac4c (diff)
downloadqpid-python-4f0f4b600767cb657cab6efb68be3f980dbd1fce.tar.gz
NO-JIRA: Trivial update to work with changed Boost 1.59 Test library.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1696716 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests')
-rw-r--r--qpid/cpp/src/tests/exception_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/exception_test.cpp b/qpid/cpp/src/tests/exception_test.cpp
index 3e844b4e58..b880069575 100644
--- a/qpid/cpp/src/tests/exception_test.cpp
+++ b/qpid/cpp/src/tests/exception_test.cpp
@@ -63,7 +63,7 @@ struct Catcher : public Runnable {
}
catch(const Ex& e) {
caught=true;
- BOOST_MESSAGE(string("Caught expected exception: ")+e.what()+"["+typeid(e).name()+"]");
+ BOOST_TEST_MESSAGE(string("Caught expected exception: ")+e.what()+"["+typeid(e).name()+"]");
}
catch(const std::exception& e) {
BOOST_ERROR(string("Bad exception: ")+e.what()+"["+typeid(e).name()+"] expected: "+typeid(Ex).name());