summaryrefslogtreecommitdiffstats
path: root/vdslib
diff options
context:
space:
mode:
Diffstat (limited to 'vdslib')
-rw-r--r--vdslib/src/test/java/com/yahoo/vdslib/distribution/GroupTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vdslib/src/test/java/com/yahoo/vdslib/distribution/GroupTestCase.java b/vdslib/src/test/java/com/yahoo/vdslib/distribution/GroupTestCase.java
index c71216b192d..2d6a85182d5 100644
--- a/vdslib/src/test/java/com/yahoo/vdslib/distribution/GroupTestCase.java
+++ b/vdslib/src/test/java/com/yahoo/vdslib/distribution/GroupTestCase.java
@@ -48,7 +48,7 @@ public class GroupTestCase {
assertDistribution("*|*|*", 5, "2,2,1");
assertDistribution("*|*|*|*", 5, "2,1,1,1");
- assertDistributionFailure("2|*", 0, "The max redundancy must be a positive number in the range 1-255.");
+ assertDistributionFailure("2|*", 0, "The max redundancy (0)must be a positive number in the range 1-255.");
assertDistributionFailure("*|2", 3, "Illegal distribution spec \"*|2\". Asterix specification must be tailing the specification.");
assertDistributionFailure("*|2|*", 3, "Illegal distribution spec \"*|2|*\". Asterix specification must be tailing the specification.");
assertDistributionFailure("0|*", 3, "Illegal distribution spec \"0|*\". Copy counts must be in the range 1-255.");