Fix naming problem with test plugin

This commit is contained in:
Ryan Ernst 2015-08-18 09:49:58 -07:00
parent dc1fa6736a
commit e61c5ce5c3
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ public class ClusterInfoServiceIT extends ESIntegTestCase {
return Settings.builder() return Settings.builder()
// manual collection or upon cluster forming. // manual collection or upon cluster forming.
.put(InternalClusterInfoService.INTERNAL_CLUSTER_INFO_TIMEOUT, "1s") .put(InternalClusterInfoService.INTERNAL_CLUSTER_INFO_TIMEOUT, "1s")
.putArray("plugin.types", Plugin.class.getName(), MockTransportService.TestPlugin.class.getName()) .putArray("plugin.types", TestPlugin.class.getName(), MockTransportService.TestPlugin.class.getName())
.build(); .build();
} }