From d509834c0050255856ef69288e82078514d440ba Mon Sep 17 00:00:00 2001 From: Colin Goodheart-Smithe Date: Fri, 13 Apr 2018 14:39:37 +0100 Subject: [PATCH] Fixes checkstyle error --- .../xpack/indexlifecycle/IndexLifecycleRunnerTests.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugin/index-lifecycle/src/test/java/org/elasticsearch/xpack/indexlifecycle/IndexLifecycleRunnerTests.java b/x-pack/plugin/index-lifecycle/src/test/java/org/elasticsearch/xpack/indexlifecycle/IndexLifecycleRunnerTests.java index 2c0c26d7d42..239ea15425e 100644 --- a/x-pack/plugin/index-lifecycle/src/test/java/org/elasticsearch/xpack/indexlifecycle/IndexLifecycleRunnerTests.java +++ b/x-pack/plugin/index-lifecycle/src/test/java/org/elasticsearch/xpack/indexlifecycle/IndexLifecycleRunnerTests.java @@ -532,7 +532,8 @@ public class IndexLifecycleRunnerTests extends ESTestCase { return ClusterState.builder(new ClusterName("my_cluster")).metaData(metadata).build(); } - private void assertClusterStateOnNextStep(ClusterState oldClusterState, Index index, StepKey currentStep, StepKey nextStep, ClusterState newClusterState, long now) { + private void assertClusterStateOnNextStep(ClusterState oldClusterState, Index index, StepKey currentStep, StepKey nextStep, + ClusterState newClusterState, long now) { assertNotSame(oldClusterState, newClusterState); MetaData newMetadata = newClusterState.metaData(); assertNotSame(oldClusterState.metaData(), newMetadata);