Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
askwang committed Oct 21, 2024
1 parent ddee00b commit 084c5fd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ public void testProcedureHasNamedArgument() {
}

private Method getMethodFromName(Class<?> clazz, String methodName) {
Method[] methods = clazz.getDeclaredMethods();
// get all methods of current and parent class
Method[] methods = clazz.getMethods();

for (Method method : methods) {
if (method.getName().equals(methodName)) {
Expand Down

0 comments on commit 084c5fd

Please sign in to comment.