This is an automated email from the ASF dual-hosted git repository.

garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit 5eccadae66249bd06c5dec28bd8c99e8161941fa
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Jun 15 20:05:50 2026 +0000

    Typo
---
 src/test/java/org/apache/commons/lang3/RandomStringUtilsTest.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/lang3/RandomStringUtilsTest.java 
b/src/test/java/org/apache/commons/lang3/RandomStringUtilsTest.java
index d294b28f5..6e48511fc 100644
--- a/src/test/java/org/apache/commons/lang3/RandomStringUtilsTest.java
+++ b/src/test/java/org/apache/commons/lang3/RandomStringUtilsTest.java
@@ -134,7 +134,8 @@ void testExceptionsRandom() {
         assertIllegalArgumentException(() -> RandomStringUtils.random(8, 32, 
65, true, false));
         assertIllegalArgumentException(() -> RandomStringUtils.random(1, 
Integer.MIN_VALUE, -10, false, false, null));
         assertIllegalArgumentException(() -> RandomStringUtils.random(2, 4, 5, 
false, false, new char[] { 'a', 'b', 'c', 'd' }, new Random()));
-        assertIllegalArgumentException(() -> RandomStringUtils.random(2, 1, 5, 
false, false, new char[] { 'a', 'b', 'c', 'd' }, new Random()));    }
+        assertIllegalArgumentException(() -> RandomStringUtils.random(2, 1, 5, 
false, false, new char[] { 'a', 'b', 'c', 'd' }, new Random()));
+    }
 
     @ParameterizedTest
     @MethodSource("randomProvider")

Reply via email to