summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2009-10-01 08:42:06 +0000
committerMartin Ritchie <ritchiem@apache.org>2009-10-01 08:42:06 +0000
commit07c40616107144836b3411b031fe46508695ff6a (patch)
tree16ebe3797405bcaed2b40fa0aceae6fe4f5901c3 /qpid/java
parent03647a241c4e54222bc32e27c106ee1c39d05346 (diff)
downloadqpid-python-07c40616107144836b3411b031fe46508695ff6a.tar.gz
QPID-2121 : Correctly set the broker properties for the test, rather than using the currently defined System value.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@820573 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java
index 4ca00cbdcc..0f2a6cdca0 100644
--- a/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java
+++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java
@@ -507,7 +507,7 @@ public class QpidTestCase extends TestCase
{
for (String key : _propertiesSetForBroker.keySet())
{
- QPID_OPTS += "-D" + key + "=" + System.getProperty(key) + " ";
+ QPID_OPTS += "-D" + key + "=" + _propertiesSetForBroker.get(key) + " ";
}
if (env.containsKey("QPID_OPTS"))