Skip to content

Commit 8dbe33e

Browse files
authored
fix typo in method name geStringtVarStringArgs in MethodFixtures (#1541)
1 parent 67cbf81 commit 8dbe33e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)