summaryrefslogtreecommitdiff
path: root/qpid/java/client/src/test
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2008-05-22 21:43:13 +0000
committerRafael H. Schloming <rhs@apache.org>2008-05-22 21:43:13 +0000
commit7db4a1119ade3a1e882602c2fc2b689da2497ae7 (patch)
treeb64bb049e7daec15c86867cbbe087f3992907340 /qpid/java/client/src/test
parent411d8ab04176a9608548244cb86894eb2760ba4c (diff)
downloadqpid-python-7db4a1119ade3a1e882602c2fc2b689da2497ae7.tar.gz
Made Range, RangeSet, and Session all use proper RFC1982 comparisons per QPID-861. Also switched command ids from long -> int, and added a mutex to channel to prevent multi-frame commands from interleaving when invoked from separate threads.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@659271 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/client/src/test')
-rw-r--r--qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/channelclose/ChannelCloseOkTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/channelclose/ChannelCloseOkTest.java b/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/channelclose/ChannelCloseOkTest.java
index a49765baaf..74c0098d72 100644
--- a/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/channelclose/ChannelCloseOkTest.java
+++ b/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/channelclose/ChannelCloseOkTest.java
@@ -199,7 +199,7 @@ public class ChannelCloseOkTest extends QpidTestCase
private void waitFor(List<Message> received, int count) throws InterruptedException
{
- long timeout = 6000;
+ long timeout = 20000;
synchronized (received)
{