fix compile error with hogtest

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1059077 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2011-01-14 17:15:36 +00:00
parent 219c5d32cd
commit 1b9e94fb46
1 changed files with 2 additions and 1 deletions

View File

@ -60,6 +60,7 @@ public class JmsMultipleClientsTestSupport extends CombinationTestSupport {
protected int messageSize = 1024; protected int messageSize = 1024;
protected boolean useConcurrentSend = true; protected boolean useConcurrentSend = true;
protected boolean autoFail = true;
protected boolean durable; protected boolean durable;
public boolean topic; public boolean topic;
protected boolean persistent; protected boolean persistent;
@ -217,7 +218,7 @@ public class JmsMultipleClientsTestSupport extends CombinationTestSupport {
} }
protected void setUp() throws Exception { protected void setUp() throws Exception {
super.setAutoFail(true); super.setAutoFail(autoFail);
super.setUp(); super.setUp();
broker = createBroker(); broker = createBroker();
broker.start(); broker.start();