diff options
| author | Robert Gemmell <robbie@apache.org> | 2012-02-02 13:57:39 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2012-02-02 13:57:39 +0000 |
| commit | dad25a4a2b13964890aebb78b4133420aaac6909 (patch) | |
| tree | 8bf580d20ac28328db54ef2e042b2e41f649e74a /java/client/src/test | |
| parent | 97449c36a04083484408907adcdfd81ecb63e7c1 (diff) | |
| download | qpid-python-dad25a4a2b13964890aebb78b4133420aaac6909.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.java | 3 |
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", |
