You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2017/11/03 17:18:16 UTC

activemq-artemis git commit: NO-JIRA Fixing typo

Repository: activemq-artemis
Updated Branches:
  refs/heads/master f855c4ac2 -> ea5967b09


NO-JIRA Fixing typo

I changed the assertion by mistake on 75dc271cdbcad4ebf6a84a1e7e5a1f52f225ea23


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/ea5967b0
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/ea5967b0
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/ea5967b0

Branch: refs/heads/master
Commit: ea5967b09bf16a650dc2028c440e16494e45fd62
Parents: f855c4a
Author: Clebert Suconic <cl...@apache.org>
Authored: Fri Nov 3 13:07:24 2017 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Fri Nov 3 13:18:09 2017 -0400

----------------------------------------------------------------------
 .../artemis/tests/integration/amqp/AmqpPresettledReceiverTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/ea5967b0/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/AmqpPresettledReceiverTest.java
----------------------------------------------------------------------
diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/AmqpPresettledReceiverTest.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/AmqpPresettledReceiverTest.java
index 04a01bc..7fb9069 100644
--- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/AmqpPresettledReceiverTest.java
+++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/amqp/AmqpPresettledReceiverTest.java
@@ -193,7 +193,7 @@ public class AmqpPresettledReceiverTest extends AmqpClientTestSupport {
       message.setText("Test-Message");
       sender.send(message);
 
-      Wait.assertEquals(0, queue::getMessageCount);
+      Wait.assertEquals(1, queue::getMessageCount);
 
       AmqpReceiver receiver = session.createReceiver(getQueueName(), null, false, true);