diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2009-08-07 18:10:17 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2009-08-07 18:10:17 +0000 |
| commit | a01130e587bc43ee802a02acc3421d4235d38812 (patch) | |
| tree | 80a1156d73a989cee4e47dd45ea02d7b0b5ffeac | |
| parent | ff0d27e43577238b346912c6f9ffe6561f539ebf (diff) | |
| download | qpid-python-a01130e587bc43ee802a02acc3421d4235d38812.tar.gz | |
QPID-2002 : Updated to use getTestQueueName() to ensure the queue used is specific to this test
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@802122 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | java/systests/src/main/java/org/apache/qpid/server/logging/QueueLoggingTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/server/logging/QueueLoggingTest.java b/java/systests/src/main/java/org/apache/qpid/server/logging/QueueLoggingTest.java index a8b532d772..e407f2b626 100644 --- a/java/systests/src/main/java/org/apache/qpid/server/logging/QueueLoggingTest.java +++ b/java/systests/src/main/java/org/apache/qpid/server/logging/QueueLoggingTest.java @@ -83,8 +83,8 @@ public class QueueLoggingTest extends AbstractTestLogging */ public void testQueueDelete() throws NamingException, JMSException, IOException, FailoverException, AMQException { - // To force a queue Creation Event we need to create a consumer. - Queue queue = (Queue) getInitialContext().lookup(QUEUE); + // To force a queue Creation Event we need to create a consumer. + Queue queue = _session.createQueue(getTestQueueName()); _session.createConsumer(queue); |
