Fixing test faliure
Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/065f9945 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/065f9945 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/065f9945 Branch: refs/heads/master Commit: 065f9945eb0f86cdb6e6c1d87e997acb0bb64e97 Parents: 3d3a8fa Author: Clebert Suconic <[email protected]> Authored: Tue Jun 7 12:51:23 2016 -0400 Committer: Clebert Suconic <[email protected]> Committed: Tue Jun 7 17:03:41 2016 -0400 ---------------------------------------------------------------------- .../artemis/tests/integration/karaf/ArtemisFeatureTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/065f9945/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/karaf/ArtemisFeatureTest.java ---------------------------------------------------------------------- diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/karaf/ArtemisFeatureTest.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/karaf/ArtemisFeatureTest.java index 75a12a8..134dd9a 100644 --- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/karaf/ArtemisFeatureTest.java +++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/karaf/ArtemisFeatureTest.java @@ -16,13 +16,13 @@ */ package org.apache.activemq.artemis.tests.integration.karaf; -import org.apache.activemq.artemis.tests.util.ActiveMQTestBase; import org.apache.karaf.jaas.boot.principal.RolePrincipal; import org.apache.karaf.jaas.boot.principal.UserPrincipal; import org.apache.karaf.shell.api.console.Session; import org.apache.karaf.shell.api.console.SessionFactory; import org.apache.log4j.Logger; import org.apache.qpid.jms.JmsConnectionFactory; +import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.ops4j.pax.exam.Configuration; @@ -66,7 +66,7 @@ import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.karafDist import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.logLevel; @RunWith(PaxExam.class) -public class ArtemisFeatureTest extends ActiveMQTestBase { +public class ArtemisFeatureTest extends Assert { private static Logger LOG = Logger.getLogger(ArtemisFeatureTest.class.getName());
