Fix test name so it gets included in the surefire test runs.

This commit is contained in:
Timothy Bish 2014-08-08 17:41:50 -04:00
parent f158e7da67
commit 145b64ac2a
1 changed files with 4 additions and 4 deletions

View File

@ -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<Object[]> 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);
}