From 38f54c8d1ae746377ce2260c39a9cce377148e84 Mon Sep 17 00:00:00 2001 From: Jon Bratseth Date: Wed, 3 Aug 2022 16:33:35 +0200 Subject: Remove println --- .../com/yahoo/vespa/hosted/provision/autoscale/ClusterModelTest.java | 4 ---- 1 file changed, 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))); -- cgit v1.2.3