summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-08-03 16:33:35 +0200
committerJon Bratseth <bratseth@gmail.com>2022-08-03 16:33:35 +0200
commit38f54c8d1ae746377ce2260c39a9cce377148e84 (patch)
tree78de6861b569da5a754b1c248a7dc0b8c21488a5
parent6508f928de7713900dfce6c637657109e30bfbdd (diff)
Remove println
-rw-r--r--node-repository/src/test/java/com/yahoo/vespa/hosted/provision/autoscale/ClusterModelTest.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/node-repository/src/test/java/com/yahoo/vespa/hosted/provision/autoscale/ClusterModelTest.java b/node-repository/src/test/java/com/yahoo/vespa/hosted/provision/autoscale/ClusterModelTest.java
index 0b3b8a3ea11..0559a232065 100644
--- a/node-repository/src/test/java/com/yahoo/vespa/hosted/provision/autoscale/ClusterModelTest.java
+++ b/node-repository/src/test/java/com/yahoo/vespa/hosted/provision/autoscale/ClusterModelTest.java
@@ -30,11 +30,7 @@ public class ClusterModelTest {
public void unit_adjustment_should_cause_no_change() {
var model = clusterModelWithNoData(); // 5 nodes, 1 group
assertEquals(Load.one(), model.loadAdjustment());
- System.out.println("Ideal load: " + model.idealLoad());
- System.out.println("Load without redundancy: " + model.loadWith(5, 1));
- System.out.println("Load with redundancy: " + model.loadWith(4, 1));
var target = model.loadAdjustment().scaled(resources());
- System.out.println("Target: " + target);
int testingNodes = 5 - 1;
int currentNodes = 5 - 1;
assertEquals(resources(), model.loadWith(testingNodes, 1).scaled(Load.one().divide(model.loadWith(currentNodes, 1)).scaled(target)));