git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1005871 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2010-10-08 15:56:45 +00:00
parent 92b3ae2cd0
commit b625db2462
1 changed files with 1 additions and 1 deletions

View File

@ -104,9 +104,9 @@ public abstract class DataFileGeneratorTestSupport extends TestSupport {
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 {