summaryrefslogtreecommitdiff
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
commit2a10deef36eec1b8df9ec52dfb44a72eee7059a8 (patch)
treeac134eb6526a6349e651a0309278f8f2a932e4e5
parentef6029b1963dc73fea5cea895a4a3cf5e1038af1 (diff)
downloadqpid-python-2a10deef36eec1b8df9ec52dfb44a72eee7059a8.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@584174 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/forwardall/CombinedTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/forwardall/CombinedTest.java b/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/forwardall/CombinedTest.java
index 255e91545f..0f7c5e2495 100644
--- a/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/forwardall/CombinedTest.java
+++ b/qpid/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);
}
}