diff --git a/java/java-tests/testData/inspection/invokeHandleSignature/Constructor.java b/java/java-tests/testData/inspection/invokeHandleSignature/Constructor.java
index 404a11c958a9..652d80d7f446 100644
--- a/java/java-tests/testData/inspection/invokeHandleSignature/Constructor.java
+++ b/java/java-tests/testData/inspection/invokeHandleSignature/Constructor.java
@@ -15,9 +15,9 @@ class Main {
l.findConstructor(Test.class, MethodType.methodType(int.class));
l.findConstructor(Test.class, MethodType.methodType(Test.class));
l.findConstructor(Test.class, MethodType.methodType(Test.class, int.class));
- l.findConstructor(Test.class, MethodType.methodType(void.class, String.class));
- l.findConstructor(Test.class, MethodType.methodType(void.class, int.class, String[][].class));
- l.findConstructor(Test.class, MethodType.methodType(void.class, String[].class));
+ l.findConstructor(Test.class, MethodType.methodType(void.class, String.class));
+ l.findConstructor(Test.class, MethodType.methodType(void.class, int.class, String[][].class));
+ l.findConstructor(Test.class, MethodType.methodType(void.class, String[].class));
l.findConstructor(WithDefault.class, MethodType.methodType(void.class));
l.findConstructor(Class.forName("WithDefault"), MethodType.methodType(void.class));
diff --git a/java/java-tests/testData/inspection/invokeHandleSignature/GenericMethod.java b/java/java-tests/testData/inspection/invokeHandleSignature/GenericMethod.java
index c8492b208a28..61d40b6fa91b 100644
--- a/java/java-tests/testData/inspection/invokeHandleSignature/GenericMethod.java
+++ b/java/java-tests/testData/inspection/invokeHandleSignature/GenericMethod.java
@@ -6,16 +6,16 @@ class Main {
l.findVirtual(Test.class, "method1", MethodType.genericMethodType(2));
l.findVirtual(Test.class, "method1", MethodType.genericMethodType(2, false));
- l.findVirtual(Test.class, "method1", MethodType.genericMethodType(2, true));
- l.findVirtual(Test.class, "method1", MethodType.genericMethodType(1));
- l.findVirtual(Test.class, "method1", MethodType.genericMethodType(3));
+ l.findVirtual(Test.class, "method1", MethodType.genericMethodType(2, true));
+ l.findVirtual(Test.class, "method1", MethodType.genericMethodType(1));
+ l.findVirtual(Test.class, "method1", MethodType.genericMethodType(3));
l.findVirtual(Test.class, "method2", MethodType.genericMethodType(2, true));
- l.findVirtual(Test.class, "method2", MethodType.genericMethodType(2, false));
- l.findVirtual(Test.class, "method2", MethodType.genericMethodType(1));
- l.findVirtual(Test.class, "method2", MethodType.genericMethodType(1, true));
- l.findVirtual(Test.class, "method2", MethodType.genericMethodType(2));
- l.findVirtual(Test.class, "method2", MethodType.genericMethodType(3));
+ l.findVirtual(Test.class, "method2", MethodType.genericMethodType(2, false));
+ l.findVirtual(Test.class, "method2", MethodType.genericMethodType(1));
+ l.findVirtual(Test.class, "method2", MethodType.genericMethodType(1, true));
+ l.findVirtual(Test.class, "method2", MethodType.genericMethodType(2));
+ l.findVirtual(Test.class, "method2", MethodType.genericMethodType(3));
}
}
diff --git a/java/java-tests/testData/inspection/invokeHandleSignature/OverloadedMethod.java b/java/java-tests/testData/inspection/invokeHandleSignature/OverloadedMethod.java
index 71b280985225..1e3238435ab1 100644
--- a/java/java-tests/testData/inspection/invokeHandleSignature/OverloadedMethod.java
+++ b/java/java-tests/testData/inspection/invokeHandleSignature/OverloadedMethod.java
@@ -20,8 +20,8 @@ class Main {
l.findVirtual(Test.class, "method", MethodType.methodType(short.class, char.class));
l.findVirtual(Test.class, "method", MethodType.methodType(int.class, int[].class));
l.findVirtual(Test.class, "method", MethodType.methodType(int.class, int[][].class));
- l.findVirtual(Test.class, "method", MethodType.methodType(Object[].class, Object[].class));
- l.findVirtual(Test.class, "method", MethodType.methodType(Object[][].class, Object[][].class));
+ l.findVirtual(Test.class, "method", MethodType.methodType(Object[].class, Object[].class));
+ l.findVirtual(Test.class, "method", MethodType.methodType(Object[][].class, Object[][].class));
l.findStatic(Test.class, "method", MethodType.methodType(void.class));
l.findVirtual(Test.class, "doesntExist", MethodType.methodType(void.class));
diff --git a/java/java-tests/testData/inspection/invokeHandleSignature/StaticMethod.java b/java/java-tests/testData/inspection/invokeHandleSignature/StaticMethod.java
index 0caa77cd9035..fd1366cbee14 100644
--- a/java/java-tests/testData/inspection/invokeHandleSignature/StaticMethod.java
+++ b/java/java-tests/testData/inspection/invokeHandleSignature/StaticMethod.java
@@ -9,8 +9,8 @@ class Main {
l.findStatic(Test.class, "method3", MethodType.methodType(String.class, String.class, String[].class));
l.findStatic(Test.class, "method1", MethodType.methodType(Test.class));
- l.findStatic(Test.class, "method2", MethodType.methodType(int.class, String.class));
- l.findStatic(Test.class, "method3", MethodType.methodType(String.class));
+ l.findStatic(Test.class, "method2", MethodType.methodType(int.class, String.class));
+ l.findStatic(Test.class, "method3", MethodType.methodType(String.class));
l.findVirtual(Test.class, "method1", MethodType.methodType(void.class));
l.findStatic(Test.class, "doesntExist", MethodType.methodType(String.class));