This is an automated email from the ASF dual-hosted git repository. kinow 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 d94d76b Alter assertions to get the class of CharUtils instead of BooleanUtils. new 7f45b88 Merge pull request #519 from Isira-Seneviratne/Correct_assertions_in_CharUtilsTest d94d76b is described below commit d94d76bbecf90beefeb4c1b51effd837e636ae90 Author: Isira Seneviratne <isirase...@gmail.com> AuthorDate: Sun Apr 19 21:12:57 2020 +0530 Alter assertions to get the class of CharUtils instead of BooleanUtils. --- src/test/java/org/apache/commons/lang3/CharUtilsTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/lang3/CharUtilsTest.java b/src/test/java/org/apache/commons/lang3/CharUtilsTest.java index 49b1a93..6bf50cb 100644 --- a/src/test/java/org/apache/commons/lang3/CharUtilsTest.java +++ b/src/test/java/org/apache/commons/lang3/CharUtilsTest.java @@ -52,8 +52,8 @@ public class CharUtilsTest { final Constructor<?>[] cons = CharUtils.class.getDeclaredConstructors(); assertEquals(1, cons.length); assertTrue(Modifier.isPublic(cons[0].getModifiers())); - assertTrue(Modifier.isPublic(BooleanUtils.class.getModifiers())); - assertFalse(Modifier.isFinal(BooleanUtils.class.getModifiers())); + assertTrue(Modifier.isPublic(CharUtils.class.getModifiers())); + assertFalse(Modifier.isFinal(CharUtils.class.getModifiers())); } @Test