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:
Bosanac Dejan 2009-02-12 13:57:22 +00:00
parent b2148c5e7a
commit 610d5272ec
1 changed files with 1 additions and 2 deletions

View File

@ -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 {