This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new 8168aa2bc Try to eliminate random failures which did happen on GH with a 100 limit 8168aa2bc is described below commit 8168aa2bc170200f5bef5604b7ee7f4dd4214d61 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jul 2 15:58:11 2023 -0400 Try to eliminate random failures which did happen on GH with a 100 limit --- src/test/java/org/apache/commons/lang3/RandomStringUtilsTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/java/org/apache/commons/lang3/RandomStringUtilsTest.java b/src/test/java/org/apache/commons/lang3/RandomStringUtilsTest.java index 9d1c2aed3..2ec4092e2 100644 --- a/src/test/java/org/apache/commons/lang3/RandomStringUtilsTest.java +++ b/src/test/java/org/apache/commons/lang3/RandomStringUtilsTest.java @@ -264,6 +264,7 @@ public class RandomStringUtilsTest extends AbstractLangTest { public void testRandomAscii() { final char[] testChars = {(char) 32, (char) 126}; final boolean[] found = {false, false}; + // Test failures have been observed on GitHub builds with a 100 limit. for (int i = 0; i < 1_000; i++) { final String randString = RandomStringUtils.randomAscii(10); for (int j = 0; j < testChars.length; j++) {