Skip to content

Commit 38ef4a0

Browse files
committed
Fix tests
1 parent 50b1376 commit 38ef4a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/openrewrite/java/migrate/trait/ScopedVariableTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ void doSome() {
5656
""",
5757
"""
5858
class Test {
59-
private String /*~~(Identified variable field with scope Block)~~>*/field;
59+
private String /*~~(Identified variable field within scope Block)~~>*/field;
6060
6161
void doSome() {
62-
String /*~~(Identified variable anotherField with scope Block)~~>*/anotherField;
62+
String /*~~(Identified variable anotherField within scope Block)~~>*/anotherField;
6363
}
6464
}
6565
"""

0 commit comments

Comments
 (0)