Skip to content

Commit 371f8c7

Browse files
committed
Merge branch 'master' of https://[email protected]/apache/commons-lang.git
2 parents 1c1d6e9 + 8dbe33e commit 371f8c7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/test/java/org/apache/commons/lang3/CharSetUtilsTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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"));

src/test/java/org/apache/commons/lang3/function/MethodFixtures.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)