summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/amqp_0_10/apply.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/cpp/src/tests/amqp_0_10/apply.cpp')
-rw-r--r--qpid/cpp/src/tests/amqp_0_10/apply.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/amqp_0_10/apply.cpp b/qpid/cpp/src/tests/amqp_0_10/apply.cpp
index 450aeac356..5a67c28c79 100644
--- a/qpid/cpp/src/tests/amqp_0_10/apply.cpp
+++ b/qpid/cpp/src/tests/amqp_0_10/apply.cpp
@@ -48,7 +48,7 @@ struct TestFunctor {
bool operator()(const T&) { return false; }
};
-BOOST_AUTO_TEST_CASE(testApply) {
+QPID_AUTO_TEST_CASE(testApply) {
connection::Tune tune(1,2,3,4);
Control* p = &tune;
@@ -83,7 +83,7 @@ struct VoidTestFunctor {
void operator()(const T&) { code=0xFF; }
};
-BOOST_AUTO_TEST_CASE(testApplyVoid) {
+QPID_AUTO_TEST_CASE(testApplyVoid) {
connection::Tune tune(1,2,3,4);
Control* p = &tune;
VoidTestFunctor tf;