diff options
| author | Robert Gemmell <robbie@apache.org> | 2011-08-09 23:36:45 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2011-08-09 23:36:45 +0000 |
| commit | 6af78ed4e7740399a93a53ec3933b8f1dc901568 (patch) | |
| tree | 8912dea7a1d13c20191156002b316bdf2d75f951 /java/common/src | |
| parent | 8b2014c24ecbfb14b68956226e3af03dd28a8f9d (diff) | |
| download | qpid-python-6af78ed4e7740399a93a53ec3933b8f1dc901568.tar.gz | |
QPID-3402: revert r1155516, bad things happened without space
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1155972 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common/src')
| -rw-r--r-- | java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java b/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java index 862406c767..89542e8125 100644 --- a/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java +++ b/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java @@ -59,7 +59,7 @@ public class QpidTestCase extends TestCase String exclusionListString = System.getProperties().getProperty("test.excludelist", ""); List<String> exclusionList = new ArrayList<String>(); - for (String uri : exclusionListURIs.split(";\\s+")) + for (String uri : exclusionListURIs.split("\\s+")) { File file = new File(uri); if (file.exists()) |
