Author: gtully
Date: Fri Oct 8 15:56:45 2010
New Revision: 1005871
URL: http://svn.apache.org/viewvc?rev=1005871&view=rev
Log:
revert test mod from https://issues.apache.org/activemq/browse/AMQ-2103 -
resolution to: https://issues.apache.org/activemq/browse/AMQ-2966
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=1005871&r1=1005870&r2=1005871&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
Fri Oct 8 15:56:45 2010
@@ -104,9 +104,9 @@ public abstract class DataFileGeneratorT
ByteArrayInputStream in = new
ByteArrayInputStream(buffer.toByteArray());
DataInputStream dis = new DataInputStream(in);
Object actual = openWireformat.unmarshal(dis);
+ assertBeansEqual("", new HashSet<Object>(), expected, actual);
LOG.info("Parsed: " + actual);
- assertBeansEqual("", new HashSet<Object>(), expected, actual);
}
protected void assertBeansEqual(String message, Set<Object>
comparedObjects, Object expected, Object actual) throws Exception {