From commits-return-10209-apmail-activemq-commits-archive=activemq.apache.org@activemq.apache.org Thu Feb 12 13:58:09 2009 Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 82989 invoked from network); 12 Feb 2009 13:58:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Feb 2009 13:58:09 -0000 Received: (qmail 97733 invoked by uid 500); 12 Feb 2009 13:57:50 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 97706 invoked by uid 500); 12 Feb 2009 13:57:50 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 97687 invoked by uid 99); 12 Feb 2009 13:57:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 05:57:50 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Feb 2009 13:57:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A3E942388A0E; Thu, 12 Feb 2009 13:57:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r743741 - /activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGeneratorTestSupport.java Date: Thu, 12 Feb 2009 13:57:22 -0000 To: commits@activemq.apache.org From: dejanb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090212135722.A3E942388A0E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dejanb Date: Thu Feb 12 13:57:22 2009 New Revision: 743741 URL: http://svn.apache.org/viewvc?rev=743741&view=rev Log: additional fix for https://issues.apache.org/activemq/browse/AMQ-2103; some tests were failing because of this change Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGeneratorTestSupport.java Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGeneratorTestSupport.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGeneratorTestSupport.java?rev=743741&r1=743740&r2=743741&view=diff ============================================================================== --- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGeneratorTestSupport.java (original) +++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGeneratorTestSupport.java Thu Feb 12 13:57:22 2009 @@ -105,9 +105,8 @@ DataInputStream dis = new DataInputStream(in); Object actual = openWireformat.unmarshal(dis); - - assertBeansEqual("", new HashSet(), expected, actual); LOG.info("Parsed: " + actual); + assertBeansEqual("", new HashSet(), expected, actual); } protected void assertBeansEqual(String message, Set comparedObjects, Object expected, Object actual) throws Exception {