summaryrefslogtreecommitdiffstats
path: root/vdslib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-08-03 11:31:45 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2019-08-03 11:31:45 +0200
commit43e0cadfb2b3c126813f4ea6cef9c9b145162a6c (patch)
treeee5db00799eaede23bf8ae03c57f591db6a8d392 /vdslib
parent926fefe6af25fa8919edb622d9ba95cf4bec5bbf (diff)
Update test.
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.");