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 7d2e069de Add test 7d2e069de is described below commit 7d2e069de8f493a4644a9cf8dc78b74512608d29 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Aug 20 08:08:40 2024 -0400 Add test --- src/test/java/org/apache/commons/lang3/RandomUtilsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/lang3/RandomUtilsTest.java b/src/test/java/org/apache/commons/lang3/RandomUtilsTest.java index 7768d5f00..bbeafa173 100644 --- a/src/test/java/org/apache/commons/lang3/RandomUtilsTest.java +++ b/src/test/java/org/apache/commons/lang3/RandomUtilsTest.java @@ -44,7 +44,7 @@ public class RandomUtilsTest extends AbstractLangTest { private static final double DELTA = 1e-5; static Stream<RandomUtils> randomProvider() { - return Stream.of(RandomUtils.secure(), RandomUtils.insecure()); + return Stream.of(RandomUtils.secure(), RandomUtils.secureStrong(), RandomUtils.insecure()); } /**