unmuted test

Original commit: elastic/x-pack-elasticsearch@8bd95e427e
This commit is contained in:
Martijn van Groningen 2015-08-31 21:28:18 +02:00
parent 896ee0447c
commit 90d0cb22ac
1 changed files with 5 additions and 2 deletions

View File

@ -44,8 +44,6 @@ import static org.mockito.Mockito.*;
*
*/
@ClusterScope(scope = SUITE, numDataNodes = 0)
@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/pull/13215")
// fails because the test infrastructure already registers a transport service (InternalTestCluster#getPlugins()) and there for the transport service used here can't be registered
public class TransportFilterTests extends ESIntegTestCase {
@Override
@ -55,6 +53,11 @@ public class TransportFilterTests extends ESIntegTestCase {
.build();
}
@Override
protected boolean enableMockModules() {
return false;
}
@Override
protected Collection<Class<? extends Plugin>> nodePlugins() {
return Arrays.asList(InternalPlugin.class, InternalPluginServerTransportService.TestPlugin.class);