mirror of https://github.com/apache/activemq.git
additional fix for https://issues.apache.org/activemq/browse/AMQ-2103; some tests were failing because of this change
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@743741 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b2148c5e7a
commit
610d5272ec
|
@ -105,9 +105,8 @@ public abstract class DataFileGeneratorTestSupport extends TestSupport {
|
|||
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 {
|
||||
|
|
Loading…
Reference in New Issue