diff options
author | Alan Conway <aconway@apache.org> | 2009-05-06 12:44:35 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-05-06 12:44:35 +0000 |
commit | bf7b362de6f5847074fea095d3c267d79aee1854 (patch) | |
tree | 83b24e9513801e35f1584387d05fb54909efb32c /qpid/cpp/src/tests/ClientSessionTest.cpp | |
parent | a57f7c7c82fe84a97fb66701aa81cc7f559895b3 (diff) | |
download | qpid-python-bf7b362de6f5847074fea095d3c267d79aee1854.tar.gz |
Remove client::Execution and FrameSet from the public API.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@772182 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/ClientSessionTest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/ClientSessionTest.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/ClientSessionTest.cpp b/qpid/cpp/src/tests/ClientSessionTest.cpp index 0a72facd86..f732d61ce1 100644 --- a/qpid/cpp/src/tests/ClientSessionTest.cpp +++ b/qpid/cpp/src/tests/ClientSessionTest.cpp @@ -176,8 +176,7 @@ QPID_AUTO_TEST_CASE_EXPECTED_FAILURES(testSuspendResume, 1) // Make sure we are still subscribed after resume. fix.connection.resume(fix.session); fix.session.messageTransfer(arg::content=Message("my-message", "my-queue")); - FrameSet::shared_ptr msg = fix.session.get(); - BOOST_CHECK_EQUAL(string("my-message"), msg->getContent()); + BOOST_CHECK_EQUAL("my-message", fix.subs.get("my-queue", TIME_SEC).getData()); } |