summaryrefslogtreecommitdiff
path: root/java/integrationtests/src
diff options
context:
space:
mode:
authorRobert Greig <rgreig@apache.org>2007-03-27 16:48:23 +0000
committerRobert Greig <rgreig@apache.org>2007-03-27 16:48:23 +0000
commit67d4453185722dfdf6d5f88c53ab30a9d97439d4 (patch)
tree58124c91705ecd6e53f0e4f3e8131a20859575e6 /java/integrationtests/src
parent3171f2ad9e85cb1a646338df2faeccbca2fbc376 (diff)
downloadqpid-python-67d4453185722dfdf6d5f88c53ab30a9d97439d4.tar.gz
Test added for durability of messages under broker failure.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@522994 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/integrationtests/src')
-rw-r--r--java/integrationtests/src/main/java/org/apache/qpid/util/ClasspathScanner.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/integrationtests/src/main/java/org/apache/qpid/util/ClasspathScanner.java b/java/integrationtests/src/main/java/org/apache/qpid/util/ClasspathScanner.java
index cd8e0a80a1..b97aebe001 100644
--- a/java/integrationtests/src/main/java/org/apache/qpid/util/ClasspathScanner.java
+++ b/java/integrationtests/src/main/java/org/apache/qpid/util/ClasspathScanner.java
@@ -33,7 +33,7 @@ import org.apache.log4j.Logger;
*
* <p/>In order to test whether a class implements an interface or extends a class, the class must be loaded (unless
* the class files were to be scanned directly). Using this collector can cause problems when it scans the classpath,
- * because loading classes will initialize their statics, which in turn may cause undesired side effects. For this
+ * because loading classes will establishConnection their statics, which in turn may cause undesired side effects. For this
* reason, the collector should always be used with a regular expression, through which the class file names are
* filtered, and only those that pass this filter will be tested. For example, if you define tests in classes that
* end with the keyword "Test" then use the regular expression "Test$" to match this.