From 83bf15494bada0f9de726407667080e2a496e95f Mon Sep 17 00:00:00 2001 From: javanna Date: Wed, 30 Mar 2016 16:20:22 +0200 Subject: [PATCH] fix checkstyle line lenght issue Original commit: elastic/x-pack-elasticsearch@3ddbde1922dfba4ad1f07b754e770b20925dc1e5 --- .../marvel/agent/resolver/cluster/ClusterStateTests.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/elasticsearch/x-pack/marvel/src/test/java/org/elasticsearch/marvel/agent/resolver/cluster/ClusterStateTests.java b/elasticsearch/x-pack/marvel/src/test/java/org/elasticsearch/marvel/agent/resolver/cluster/ClusterStateTests.java index e020d163d29..89e43e1a480 100644 --- a/elasticsearch/x-pack/marvel/src/test/java/org/elasticsearch/marvel/agent/resolver/cluster/ClusterStateTests.java +++ b/elasticsearch/x-pack/marvel/src/test/java/org/elasticsearch/marvel/agent/resolver/cluster/ClusterStateTests.java @@ -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 {