aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/ClusterStateViewTest.java
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2021-04-08 08:56:41 +0200
committerHarald Musum <musum@verizonmedia.com>2021-04-08 08:56:41 +0200
commit710092a282bd71f363901831d3feeeca43c64d08 (patch)
tree09eaec111ea8ca05444aabb7e83ad1e06ac0b418 /clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/ClusterStateViewTest.java
parent3b7d4d6effca7f3e06e7b4484f9561f6ec5e6728 (diff)
Cleanup tests a bit
Diffstat (limited to 'clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/ClusterStateViewTest.java')
-rw-r--r--clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/ClusterStateViewTest.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/ClusterStateViewTest.java b/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/ClusterStateViewTest.java
index b7f4b0c7ddb..7427c882ae8 100644
--- a/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/ClusterStateViewTest.java
+++ b/clustercontroller-core/src/test/java/com/yahoo/vespa/clustercontroller/core/ClusterStateViewTest.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core;
import com.yahoo.vdslib.state.*;
@@ -33,8 +33,6 @@ public class ClusterStateViewTest {
verify(statsAggregator, never()).updateForDistributor(anyInt(), any());
}
-
-
@Test
public void testStateVersionMismatch() {
when(nodeInfo.isDistributor()).thenReturn(true);
@@ -100,4 +98,5 @@ public class ClusterStateViewTest {
assert(indices.contains(2));
assert(indices.contains(6));
}
+
}