From 145b64ac2ae6a700ee4fec1909e9aef366ca1633 Mon Sep 17 00:00:00 2001 From: Timothy Bish Date: Fri, 8 Aug 2014 17:41:50 -0400 Subject: [PATCH] Fix test name so it gets included in the surefire test runs. --- .../mqtt/{MQTTAuthTests.java => MQTTAuthTest.java} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename activemq-mqtt/src/test/java/org/apache/activemq/transport/mqtt/{MQTTAuthTests.java => MQTTAuthTest.java} (98%) diff --git a/activemq-mqtt/src/test/java/org/apache/activemq/transport/mqtt/MQTTAuthTests.java b/activemq-mqtt/src/test/java/org/apache/activemq/transport/mqtt/MQTTAuthTest.java similarity index 98% rename from activemq-mqtt/src/test/java/org/apache/activemq/transport/mqtt/MQTTAuthTests.java rename to activemq-mqtt/src/test/java/org/apache/activemq/transport/mqtt/MQTTAuthTest.java index 574d55474a..a8ced024b8 100644 --- a/activemq-mqtt/src/test/java/org/apache/activemq/transport/mqtt/MQTTAuthTests.java +++ b/activemq-mqtt/src/test/java/org/apache/activemq/transport/mqtt/MQTTAuthTest.java @@ -57,11 +57,11 @@ import org.slf4j.LoggerFactory; * Tests various use cases that require authentication or authorization over MQTT */ @RunWith(Parameterized.class) -public class MQTTAuthTests extends MQTTAuthTestSupport { +public class MQTTAuthTest extends MQTTAuthTestSupport { - private static final Logger LOG = LoggerFactory.getLogger(MQTTAuthTests.class); + private static final Logger LOG = LoggerFactory.getLogger(MQTTAuthTest.class); - @Parameters(name= "{index}: scheme({0})") + @Parameters(name="{0}") public static Collection data() { return Arrays.asList(new Object[][] { {"mqtt", false}, @@ -71,7 +71,7 @@ public class MQTTAuthTests extends MQTTAuthTestSupport { }); } - public MQTTAuthTests(String connectorScheme, boolean useSSL) { + public MQTTAuthTest(String connectorScheme, boolean useSSL) { super(connectorScheme, useSSL); }