diff options
author | Rafael H. Schloming <rhs@apache.org> | 2008-05-01 21:26:32 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2008-05-01 21:26:32 +0000 |
commit | 88a231f962004f46f20ff509c09771d151aac4bf (patch) | |
tree | ee6cf38ef5a64372e96ecc8360846e001e344cc7 | |
parent | 4c985b2fee8c7fd53aea38aea201e03f548cd329 (diff) | |
download | qpid-python-88a231f962004f46f20ff509c09771d151aac4bf.tar.gz |
QPID-987: reduced message count in DupsOKTest
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@652670 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/java/systests/src/main/java/org/apache/qpid/test/client/DupsOkTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/DupsOkTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/DupsOkTest.java index 463946e14a..9ffac5e084 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/DupsOkTest.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/DupsOkTest.java @@ -41,7 +41,7 @@ public class DupsOkTest extends VMTestCase { private Queue _queue; - private static final int MSG_COUNT = 9999; + private static final int MSG_COUNT = 4999; private CountDownLatch _awaitCompletion = new CountDownLatch(1); public void setUp() throws Exception |