diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2009-08-14 12:50:36 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2009-08-14 12:50:36 +0000 |
| commit | e998b312406f35cd49eee45c0701ade51953b748 (patch) | |
| tree | 2a8eb0ae9b8ee5274f28d19998efedf59d16aa88 /qpid/java/systests | |
| parent | c39fc2363874ac2b368db5673cdfb103375838e1 (diff) | |
| download | qpid-python-e998b312406f35cd49eee45c0701ade51953b748.tar.gz | |
QPID-2001 : Default Locale should be the VMs locale not en_US.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@804201 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests')
| -rw-r--r-- | qpid/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java index 91ed9766f6..95808e454f 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java @@ -196,13 +196,17 @@ public class FlowControlTest extends QpidTestCase { System.err.println("Test Run:" + ++run); Thread.sleep(1000); - - test.startBroker(); - test.testBasicBytesFlowControl(); - - Thread.sleep(1000); - - test.stopBroker(); + try + { + test.startBroker(); + test.testBasicBytesFlowControl(); + + Thread.sleep(1000); + } + finally + { + test.stopBroker(); + } } } } |
