fix checkstyle line lenght issue

Original commit: elastic/x-pack-elasticsearch@3ddbde1922
This commit is contained in:
javanna 2016-03-30 16:20:22 +02:00 committed by Luca Cavanna
parent 126383439a
commit 83bf15494b
1 changed files with 2 additions and 1 deletions

View File

@ -100,7 +100,8 @@ public class ClusterStateTests extends MarvelIntegTestCase {
logger.debug("--> ensure that the 'nodes' attributes of the cluster state document is not indexed");
assertHitCount(client().prepareSearch().setSize(0)
.setTypes(ClusterStateResolver.TYPE)
.setQuery(matchQuery("cluster_state.nodes." + nodes.getMasterNodeId() + ".name", nodes.getMasterNode().getName())).get(), 0L);
.setQuery(matchQuery("cluster_state.nodes." + nodes.getMasterNodeId() + ".name",
nodes.getMasterNode().getName())).get(), 0L);
}
public void testClusterStateNodes() throws Exception {