diff options
Diffstat (limited to 'cpp/src/tests/TxAckTest.cpp')
-rw-r--r-- | cpp/src/tests/TxAckTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/tests/TxAckTest.cpp b/cpp/src/tests/TxAckTest.cpp index df9fa89501..a5d9eb69a5 100644 --- a/cpp/src/tests/TxAckTest.cpp +++ b/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() |