File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/test/java/org/apache/commons/lang3 Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,6 @@ void testDelete_StringStringarray() {
156156 assertEquals ("ho" , CharSetUtils .delete ("hello" , "el" ));
157157 assertEquals ("" , CharSetUtils .delete ("hello" , "elho" ));
158158 assertEquals ("hello" , CharSetUtils .delete ("hello" , "" ));
159- assertEquals ("hello" , CharSetUtils .delete ("hello" , "" ));
160159 assertEquals ("" , CharSetUtils .delete ("hello" , "a-z" ));
161160 assertEquals ("" , CharSetUtils .delete ("----" , "-" ));
162161 assertEquals ("heo" , CharSetUtils .delete ("hello" , "l" ));
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ static Method getMethodForGetStringThrowsUnchecked() throws NoSuchMethodExceptio
7373 }
7474
7575 static Method getMethodForGetStringVarStringArgs () throws NoSuchMethodException , SecurityException {
76- return getDeclaredMethod ("geStringtVarStringArgs " , String [].class );
76+ return getDeclaredMethod ("getStringVarStringArgs " , String [].class );
7777 }
7878
7979 static Method getMethodForSetString1Arg () throws NoSuchMethodException , SecurityException {
@@ -118,7 +118,7 @@ public static String staticGetString() {
118118
119119 private String [] valueArray ;
120120
121- public String geStringtVarStringArgs (final String ... strings ) {
121+ public String getStringVarStringArgs (final String ... strings ) {
122122 return "XYZ" ;
123123 }
124124
You can’t perform that action at this time.
0 commit comments