fixed openwire test case

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@511758 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2007-02-26 08:57:19 +00:00
parent 53bf323e74
commit c0fb0c5584
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ public abstract class DataFileGeneratorTestSupport extends TestSupport {
OpenWireFormat wf = new OpenWireFormat(); OpenWireFormat wf = new OpenWireFormat();
wf.setCacheEnabled(true); wf.setCacheEnabled(true);
wf.setStackTraceEnabled(false); wf.setStackTraceEnabled(false);
wf.setVersion(2); wf.setVersion(OpenWireFormat.DEFAULT_VERSION);
return wf; return wf;
} }