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 | 172b0f7a7fd463ca81425c8e7b2ea9a9b964409d (patch) | |
| tree | f6f587949077976599c6dcd60821547d40a168f8 /qpid/java/client/src/test | |
| parent | 8ceca1598f2ef8dafd45704828a75206796f429a (diff) | |
| download | qpid-python-172b0f7a7fd463ca81425c8e7b2ea9a9b964409d.tar.gz | |
QPID-3784: move the system property key into ClientProperties
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1239622 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/client/DispatcherDaemonTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/java/client/src/test/java/org/apache/qpid/client/DispatcherDaemonTest.java b/qpid/java/client/src/test/java/org/apache/qpid/client/DispatcherDaemonTest.java index 175faeb54c..b9c4bfc676 100644 --- a/qpid/java/client/src/test/java/org/apache/qpid/client/DispatcherDaemonTest.java +++ b/qpid/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", |
