This is an automated email from the ASF dual-hosted git repository. orudyy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git
commit b0d57094a86a467477a7c1f02d5fb174c36301e2 Author: Alex Rudyy <[email protected]> AuthorDate: Wed Aug 21 17:09:53 2019 +0100 QPID-8350: [Tests][AMQP 1.0] Fix setting of flow next-incoming-id in OutcomeTest --- .../org/apache/qpid/tests/protocol/v1_0/messaging/OutcomeTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/systests/protocol-tests-amqp-1-0/src/test/java/org/apache/qpid/tests/protocol/v1_0/messaging/OutcomeTest.java b/systests/protocol-tests-amqp-1-0/src/test/java/org/apache/qpid/tests/protocol/v1_0/messaging/OutcomeTest.java index fce9324..2ea7dda 100644 --- a/systests/protocol-tests-amqp-1-0/src/test/java/org/apache/qpid/tests/protocol/v1_0/messaging/OutcomeTest.java +++ b/systests/protocol-tests-amqp-1-0/src/test/java/org/apache/qpid/tests/protocol/v1_0/messaging/OutcomeTest.java @@ -75,6 +75,7 @@ public class OutcomeTest extends BrokerAdminUsingTestBase .flowIncomingWindow(UnsignedInteger.ONE) .flowLinkCredit(UnsignedInteger.ONE) .flowHandleFromLinkHandle() + .flowNextIncomingIdFromPeerLatestSessionBeginAndDeliveryCount() .flow() .receiveDelivery() @@ -92,7 +93,7 @@ public class OutcomeTest extends BrokerAdminUsingTestBase .disposition() .flowIncomingWindow(UnsignedInteger.valueOf(2)) .flowLinkCredit(UnsignedInteger.valueOf(2)) - .flowNextIncomingIdFromLatestDelivery() + .flowNextIncomingIdFromPeerLatestSessionBeginAndDeliveryCount() .flow() .receiveDelivery() .decodeLatestDelivery(); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
