summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-02-06 13:02:05 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2024-02-06 13:02:05 +0100
commit6ec6f04968bf915fc51d3711215680d6856e3ef7 (patch)
tree6fbbe75dadd63d9a35a066032d9d2182976c02c6 /config-model
parentc4b29ec309bc118d41f90a9d8bbd94f53023e208 (diff)
Add space
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/test/java/com/yahoo/vespa/model/content/RedundancyTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/config-model/src/test/java/com/yahoo/vespa/model/content/RedundancyTest.java b/config-model/src/test/java/com/yahoo/vespa/model/content/RedundancyTest.java
index 070ab10c805..69ad4f0c61b 100644
--- a/config-model/src/test/java/com/yahoo/vespa/model/content/RedundancyTest.java
+++ b/config-model/src/test/java/com/yahoo/vespa/model/content/RedundancyTest.java
@@ -36,10 +36,10 @@ public class RedundancyTest {
@Test
void test_that_redundancy_is_rounded_up() {
- verifyFinalRedundancy(new Redundancy(1, 1, 1, 5, 5), 1,5);
- verifyFinalRedundancy(new Redundancy(1, 1, 1, 5, 4), 1,4);
- verifyFinalRedundancy(new Redundancy(1, 2, 2, 5, 10), 2,10);
- verifyFinalRedundancy(new Redundancy(1, 2, 2, 5, 9), 2,9);
+ verifyFinalRedundancy(new Redundancy(1, 1, 1, 5, 5), 1, 5);
+ verifyFinalRedundancy(new Redundancy(1, 1, 1, 5, 4), 1, 4);
+ verifyFinalRedundancy(new Redundancy(1, 2, 2, 5, 10), 2, 10);
+ verifyFinalRedundancy(new Redundancy(1, 2, 2, 5, 9), 2, 9);
}
}