diff options
author | Gordon Sim <gsim@apache.org> | 2007-07-19 08:27:36 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2007-07-19 08:27:36 +0000 |
commit | 1f4463ff0c56261e2ee7f5a163ba2ba8ced80793 (patch) | |
tree | c57b784be11c1eb3e203f433b81660d4cc339eb5 /qpid/cpp/src/tests/TxPublishTest.cpp | |
parent | 3f8fc92fbc2303d3a97b04e65a18d25f1d6cc7e8 (diff) | |
download | qpid-python-1f4463ff0c56261e2ee7f5a163ba2ba8ced80793.tar.gz |
removed the need to pass MethodContext/RequestId through proxy and handler/adapter interfaces
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@557522 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/TxPublishTest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/TxPublishTest.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/TxPublishTest.cpp b/qpid/cpp/src/tests/TxPublishTest.cpp index 8c3c7afe31..05c03754f9 100644 --- a/qpid/cpp/src/tests/TxPublishTest.cpp +++ b/qpid/cpp/src/tests/TxPublishTest.cpp @@ -69,8 +69,7 @@ public: TxPublishTest() : queue1(new Queue("queue1", false, &store, 0)), queue2(new Queue("queue2", false, &store, 0)), - msg(new BasicMessage(0, "exchange", "routing_key", false, false, - MockChannel::basicGetBody())), + msg(new BasicMessage(0, "exchange", "routing_key", false, false)), op(msg) { msg->setHeader(AMQHeaderBody::shared_ptr(new AMQHeaderBody(BASIC))); |