Author: arnaudsimon
Date: Wed Mar 26 03:34:06 2008
New Revision: 641239
URL: http://svn.apache.org/viewvc?rev=641239&view=rev
Log:
Qpid-860: changed running test condition
Modified:
incubator/qpid/trunk/qpid/java/client/src/test/java/org/apache/qpid/testutil/QpidTestCase.java
Modified:
incubator/qpid/trunk/qpid/java/client/src/test/java/org/apache/qpid/testutil/QpidTestCase.java
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/client/src/test/java/org/apache/qpid/testutil/QpidTestCase.java?rev=641239&r1=641238&r2=641239&view=diff
==============================================================================
---
incubator/qpid/trunk/qpid/java/client/src/test/java/org/apache/qpid/testutil/QpidTestCase.java
(original)
+++
incubator/qpid/trunk/qpid/java/client/src/test/java/org/apache/qpid/testutil/QpidTestCase.java
Wed Mar 26 03:34:06 2008
@@ -146,8 +146,8 @@
public void run(TestResult testResult)
{
- if( _exclusionList != null && _exclusionList.contains(
getClass().getName() + "#*") ||
- _exclusionList.contains( getClass().getName() + "#" +
getName()))
+ if( _exclusionList != null && (_exclusionList.contains(
getClass().getName() + "#*") ||
+ _exclusionList.contains( getClass().getName() + "#" +
getName())))
{
_logger.info("Test: " + getName() + " is excluded");
testResult.endTest(this);