diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2009-10-01 08:42:06 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2009-10-01 08:42:06 +0000 |
| commit | 82180418279a59fb61e07a23174ead16d3c22283 (patch) | |
| tree | d0466a286b84a8e9594ccb588e7c661df6fc76ce /java | |
| parent | ffd40ddeb64cef78d4165e637cd69e9ef2363b2e (diff) | |
| download | qpid-python-82180418279a59fb61e07a23174ead16d3c22283.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/qpid@820573 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
| -rw-r--r-- | java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java b/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java index 4ca00cbdcc..0f2a6cdca0 100644 --- a/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java +++ b/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")) |
