diff options
| author | Arnaud Simon <arnaudsimon@apache.org> | 2007-10-08 12:46:57 +0000 |
|---|---|---|
| committer | Arnaud Simon <arnaudsimon@apache.org> | 2007-10-08 12:46:57 +0000 |
| commit | de7527f04368d89b1db357e224edcc748088ae1c (patch) | |
| tree | c33863994b9b09f13ec8462f0477ab322ca862c5 /qpid/java/client/src/test | |
| parent | c025e5f2173409ea1c4deb3810d8bea3ce80a788 (diff) | |
| download | qpid-python-de7527f04368d89b1db357e224edcc748088ae1c.tar.gz | |
fixed issue with temporary queues as the consumer was not closed when cancel operation returned
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@582806 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/temporaryqueue/TemporaryQueueTest.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/temporaryqueue/TemporaryQueueTest.java b/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/temporaryqueue/TemporaryQueueTest.java index 549f60112e..34197f2608 100644 --- a/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/temporaryqueue/TemporaryQueueTest.java +++ b/qpid/java/client/src/test/java/org/apache/qpid/test/unit/client/temporaryqueue/TemporaryQueueTest.java @@ -42,12 +42,11 @@ public class TemporaryQueueTest extends QpidTestCase protected void setUp() throws Exception
{
super.setUp();
- TransportConnection.createVMBroker(1);
}
protected void tearDown() throws Exception
{
- TransportConnection.killAllVMBrokers();
+ super.tearDown();
}
protected Connection createConnection() throws Exception
|
