summaryrefslogtreecommitdiff
path: root/java/client
diff options
context:
space:
mode:
authorArnaud Simon <arnaudsimon@apache.org>2007-10-12 15:00:45 +0000
committerArnaud Simon <arnaudsimon@apache.org>2007-10-12 15:00:45 +0000
commit92e0c21cfbe396079abac9ae7e884d86371170bb (patch)
treeb6592f2951612610ce539936778bf3cc152d728c /java/client
parentf1b26fa4137f03029c7833e2276d46496afe6d3e (diff)
downloadqpid-python-92e0c21cfbe396079abac9ae7e884d86371170bb.tar.gz
Changed the suite() method so that not to always use an in-VM broker
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@584174 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client')
-rw-r--r--java/client/src/test/java/org/apache/qpid/test/unit/client/forwardall/CombinedTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/client/src/test/java/org/apache/qpid/test/unit/client/forwardall/CombinedTest.java b/java/client/src/test/java/org/apache/qpid/test/unit/client/forwardall/CombinedTest.java
index 255e91545f..0f7c5e2495 100644
--- a/java/client/src/test/java/org/apache/qpid/test/unit/client/forwardall/CombinedTest.java
+++ b/java/client/src/test/java/org/apache/qpid/test/unit/client/forwardall/CombinedTest.java
@@ -49,9 +49,9 @@ public class CombinedTest extends QpidTestCase
public void testForwardAll() throws Exception
{
- while (run < 10)
+ while (run < 1)
{
- int services = 2;
+ int services =1;
ServiceCreator.start("vm://:1", services);
_logger.info("Starting " + ++run + " client...");
@@ -65,6 +65,6 @@ public class CombinedTest extends QpidTestCase
public static junit.framework.Test suite()
{
- return new VMBrokerSetup(new junit.framework.TestSuite(CombinedTest.class));
+ return new junit.framework.TestSuite(CombinedTest.class);
}
}