make test a little more deterministic and simplify failure check

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1164056 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2011-09-01 12:55:18 +00:00
parent bb2f0db7b8
commit 588a3c3594
1 changed files with 3 additions and 3 deletions

View File

@ -127,7 +127,7 @@ public class SoWriteTimeoutTest extends JmsTestSupport {
//dumpAllThreads("blocked on write");
// abort should be done after this
TimeUnit.SECONDS.sleep(4);
TimeUnit.SECONDS.sleep(10);
proxy.goOn();
@ -137,8 +137,8 @@ public class SoWriteTimeoutTest extends JmsTestSupport {
// verify connection is dead
try {
for (int i=0; i<10; i++) {
stompConnection.send("/queue/" + dest.getPhysicalName(), messageTextPrefix + "ReplyText" + i);
for (int i=0; i<100; i++) {
stompConnection.send("/queue/" + dest.getPhysicalName(), "ShouldBeDeadConnectionText" + i);
}
fail("expected send to fail with timeout out connection");
} catch (SocketException expected) {