Skip to content

Commit a707a74

Browse files
committed
Fix test i2797
Fork_1.java failed to compile before because the class name did not match the filename.
1 parent 7a35bf8 commit a707a74

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Test is pending because we have no good way to test it.
22
// We need to: Compile Fork.java, and then compile Test.scala
33
// with Fork.class on the classpath.
4-
public @interface Fork {
4+
public @interface Fork_1 {
55
int value() default -1;
66
String[] jvmArgs() default { "nope" };
77
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Test is pending because we have no good way to test it.
22
// We need to: Compile Fork.java, and then compile Test.scala
33
// with Fork.class on the classpath.
4-
@Fork(jvmArgs = Array("I'm", "hot"))
4+
@Fork_1(jvmArgs = Array("I'm", "hot"))
55
class Test

0 commit comments

Comments
 (0)