File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/test/java/org/openrewrite/java/testing/junit5 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -574,10 +574,10 @@ void fieldRetainsModifiers() {
574574
575575 public class MyTest {
576576 @ClassRule
577- public static final TemporaryFolder temporaryFolder = new TemporaryFolder();
577+ public static final TemporaryFolder temp = new TemporaryFolder();
578578
579579 public static void init() {
580- File aDir = temporaryFolder .getRoot();
580+ File aDir = temp .getRoot();
581581 }
582582 }
583583 """ ,
@@ -588,10 +588,10 @@ public static void init() {
588588
589589 public class MyTest {
590590 @TempDir
591- public static final File file ;
591+ public static final File temp ;
592592
593593 public static void init() {
594- File aDir = file ;
594+ File aDir = temp ;
595595 }
596596 }
597597 """
You can’t perform that action at this time.
0 commit comments