summaryrefslogtreecommitdiff
path: root/java/client/src/test
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2012-02-02 13:57:39 +0000
committerRobert Gemmell <robbie@apache.org>2012-02-02 13:57:39 +0000
commitf4d32da4fe145f777f61462734568a77f58c1741 (patch)
tree8bf580d20ac28328db54ef2e042b2e41f649e74a /java/client/src/test
parent147e228eaf27dbb216111ede93295e5067e0a108 (diff)
downloadqpid-python-f4d32da4fe145f777f61462734568a77f58c1741.tar.gz
QPID-3784: move the system property key into ClientProperties
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1239622 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/src/test')
-rw-r--r--java/client/src/test/java/org/apache/qpid/client/DispatcherDaemonTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/client/src/test/java/org/apache/qpid/client/DispatcherDaemonTest.java b/java/client/src/test/java/org/apache/qpid/client/DispatcherDaemonTest.java
index 175faeb54c..b9c4bfc676 100644
--- a/java/client/src/test/java/org/apache/qpid/client/DispatcherDaemonTest.java
+++ b/java/client/src/test/java/org/apache/qpid/client/DispatcherDaemonTest.java
@@ -21,6 +21,7 @@ package org.apache.qpid.client;
import javax.jms.Session;
import org.apache.qpid.AMQException;
+import org.apache.qpid.configuration.ClientProperties;
import org.apache.qpid.test.utils.QpidTestCase;
import org.apache.qpid.url.URLSyntaxException;
@@ -47,7 +48,7 @@ public class DispatcherDaemonTest extends QpidTestCase
public void testDispatcherIsRunInDaemonThreadWithConsumerMessageListenerAndDaemonFlagOn() throws Exception
{
- setTestSystemProperty(AMQSession.DAEMON_DISPATCHER, "true");
+ setTestSystemProperty(ClientProperties.DAEMON_DISPATCHER, "true");
_session = createSession();
_session.startDispatcherIfNecessary();
assertTrue("Dispatcher thread should be daemon as qpid.jms.daemon.dispatcher is set to true",