diff options
Diffstat (limited to 'qpid/cpp/src/tests/QueueTest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/QueueTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/QueueTest.cpp b/qpid/cpp/src/tests/QueueTest.cpp index 114e0045f5..3235fe2418 100644 --- a/qpid/cpp/src/tests/QueueTest.cpp +++ b/qpid/cpp/src/tests/QueueTest.cpp @@ -54,7 +54,7 @@ class FailOnDeliver : public Deliverable public: void deliverTo(Queue::shared_ptr& queue) { - throw Exception(boost::format("Invalid delivery to %1%") % queue->getName()); + throw Exception(QPID_MSG("Invalid delivery to " << queue->getName())); } }; |