mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
update FixAllQuickfixTest test data, so that it identifies the quick fix unambiguously
This commit is contained in:
@@ -3,7 +3,7 @@ public class Test {
|
||||
void foo() {
|
||||
int k = 0;
|
||||
int i = 0;
|
||||
if (<caret>i == k) {}
|
||||
if (i <caret>== k) {}
|
||||
if (i == k) {}
|
||||
if (i == k) {}
|
||||
if (i == k) {}
|
||||
|
||||
@@ -14,7 +14,7 @@ public class Test {
|
||||
void foo2() {
|
||||
int k = 0;
|
||||
int i = 0;
|
||||
if (<caret>i == k) {}
|
||||
if (i <caret>== k) {}
|
||||
if (i == k) {}
|
||||
if (i == k) {}
|
||||
if (i == k) {}
|
||||
|
||||
@@ -3,6 +3,6 @@ public class Test {
|
||||
void foo2() {
|
||||
int k = 0;
|
||||
int i = 0;
|
||||
assert <caret>i != k;
|
||||
assert i <caret>!= k;
|
||||
}
|
||||
}
|
||||
@@ -3,7 +3,7 @@ public class Test {
|
||||
void foo2() {
|
||||
int k = 0;
|
||||
int i = 0;
|
||||
assert <caret>i == k;
|
||||
assert i <caret>== k;
|
||||
assert i == k;
|
||||
if (i == k) {
|
||||
System.out.println();
|
||||
|
||||
Reference in New Issue
Block a user