Make tests follow naming conventions
One test wasn't running because it didn't match! Original commit: elastic/x-pack-elasticsearch@081c6b09e2
This commit is contained in:
parent
7fbf5645e2
commit
08e0717f6b
|
@ -18,7 +18,7 @@ import static org.hamcrest.Matchers.is;
|
||||||
/**
|
/**
|
||||||
* Unit tests for the AuthorizationUtils class
|
* Unit tests for the AuthorizationUtils class
|
||||||
*/
|
*/
|
||||||
public class AuthorizationUtilsTest extends ESTestCase {
|
public class AuthorizationUtilsTests extends ESTestCase {
|
||||||
|
|
||||||
private ThreadContext threadContext;
|
private ThreadContext threadContext;
|
||||||
|
|
|
@ -42,7 +42,7 @@ import java.util.concurrent.TimeUnit;
|
||||||
import static org.elasticsearch.common.unit.TimeValue.timeValueMinutes;
|
import static org.elasticsearch.common.unit.TimeValue.timeValueMinutes;
|
||||||
|
|
||||||
@ClusterScope(scope = ESIntegTestCase.Scope.SUITE, randomDynamicTemplates = false, transportClientRatio = 0.0)
|
@ClusterScope(scope = ESIntegTestCase.Scope.SUITE, randomDynamicTemplates = false, transportClientRatio = 0.0)
|
||||||
public class AbstractCollectorTestCase extends MarvelIntegTestCase {
|
public abstract class AbstractCollectorTestCase extends MarvelIntegTestCase {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Collection<Class<? extends Plugin>> nodePlugins() {
|
protected Collection<Class<? extends Plugin>> nodePlugins() {
|
||||||
|
|
Loading…
Reference in New Issue