summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/tests/TxAckTest.cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2007-08-10 14:51:08 +0000
committerGordon Sim <gsim@apache.org>2007-08-10 14:51:08 +0000
commit0ced84fe4947e2d2e37c0422aec7f6a2ac4ebd69 (patch)
tree25fabe373938df62454f516d0bd41e9b314c17b6 /qpid/cpp/src/tests/TxAckTest.cpp
parente6bcb62eb3bc68b3d17996027f65804f25dd9c7f (diff)
downloadqpid-python-0ced84fe4947e2d2e37c0422aec7f6a2ac4ebd69.tar.gz
Broker management of message acknowledgements now runs entirely off execution layer.
Flow control support. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@564611 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/TxAckTest.cpp')
-rw-r--r--qpid/cpp/src/tests/TxAckTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/tests/TxAckTest.cpp b/qpid/cpp/src/tests/TxAckTest.cpp
index df9fa89501..a5d9eb69a5 100644
--- a/qpid/cpp/src/tests/TxAckTest.cpp
+++ b/qpid/cpp/src/tests/TxAckTest.cpp
@@ -77,9 +77,9 @@ public:
}
//assume msgs 1-5, 7 and 9 are all acked (i.e. 6, 8 & 10 are not)
- acked.range = 5;
- acked.individual.push_back(7);
- acked.individual.push_back(9);
+ acked.mark = 5;
+ acked.update(7, 7);
+ acked.update(9, 9);
}
void testPrepare()