Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 37D73103F1 for ; Thu, 4 Dec 2014 17:34:27 +0000 (UTC) Received: (qmail 25306 invoked by uid 500); 4 Dec 2014 17:34:27 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 25209 invoked by uid 500); 4 Dec 2014 17:34:27 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 25193 invoked by uid 99); 4 Dec 2014 17:34:27 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Dec 2014 17:34:27 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BA921A1C210; Thu, 4 Dec 2014 17:34:26 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: robbie@apache.org To: commits@qpid.apache.org Date: Thu, 04 Dec 2014 17:34:27 -0000 Message-Id: <11b1ab2fcf544fc896778325c9bb402b@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/3] qpid-jms git commit: add assertion text to aid analysis of failures add assertion text to aid analysis of failures Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/80d95960 Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/80d95960 Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/80d95960 Branch: refs/heads/master Commit: 80d95960cff3082fd19124c49880e48de248d6a1 Parents: 1482961 Author: Robert Gemmell Authored: Thu Dec 4 12:19:21 2014 +0000 Committer: Robert Gemmell Committed: Thu Dec 4 17:34:07 2014 +0000 ---------------------------------------------------------------------- .../apache/qpid/jms/transactions/JmsTransactedConsumerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/80d95960/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/transactions/JmsTransactedConsumerTest.java ---------------------------------------------------------------------- diff --git a/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/transactions/JmsTransactedConsumerTest.java b/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/transactions/JmsTransactedConsumerTest.java index 1db4007..d29ba1f 100644 --- a/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/transactions/JmsTransactedConsumerTest.java +++ b/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/transactions/JmsTransactedConsumerTest.java @@ -202,7 +202,7 @@ public class JmsTransactedConsumerTest extends AmqpTestSupport { List messageNumbers = new ArrayList(); for(int i = 1; i <= totalCount; i++) { Message message = consumer.receive(1000); - assertNotNull(message); + assertNotNull("Failed to receive message: " + i, message); int msgNum = message.getIntProperty(QpidJmsTestSupport.MESSAGE_NUMBER); messageNumbers.add(msgNum); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org