Fix test data for reconcile package with directory test
(cherry picked from commit b926e02)
This commit is contained in:
committed by
Dmitry Petrov
parent
abca7107a7
commit
fd893ba499
+1
-1
@@ -3,6 +3,6 @@ package target;
|
||||
class Test {
|
||||
static void test() {
|
||||
new Foo();
|
||||
TargetPackage.foo();
|
||||
TestKt.foo();
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package target;
|
||||
|
||||
import static target.TargetPackage.foo;
|
||||
import static target.TestKt.foo;
|
||||
|
||||
class Test {
|
||||
static void test() {
|
||||
|
||||
+2
-2
@@ -1,11 +1,11 @@
|
||||
package usages;
|
||||
|
||||
import target.Foo;
|
||||
import target.TargetPackage;
|
||||
import target.TestKt;
|
||||
|
||||
class Test {
|
||||
static void test() {
|
||||
new Foo();
|
||||
TargetPackage.foo();
|
||||
TestKt.foo();
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
package usages;
|
||||
|
||||
import target.Foo;
|
||||
import static target.TargetPackage.foo;
|
||||
import static target.TestKt.foo;
|
||||
|
||||
class Test {
|
||||
static void test() {
|
||||
|
||||
+1
-1
@@ -3,6 +3,6 @@ package target;
|
||||
class Test {
|
||||
static void test() {
|
||||
new source.Foo();
|
||||
source.SourcePackage.foo();
|
||||
source.TestKt.foo();
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
package target;
|
||||
|
||||
import source.Foo;
|
||||
import static source.SourcePackage.foo;
|
||||
import static source.TestKt.foo;
|
||||
|
||||
class Test {
|
||||
static void test() {
|
||||
|
||||
+1
-1
@@ -3,6 +3,6 @@ package usages;
|
||||
class Test {
|
||||
static void test() {
|
||||
new source.Foo();
|
||||
source.SourcePackage.foo();
|
||||
source.TestKt.foo();
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
package usages;
|
||||
|
||||
import source.Foo;
|
||||
import static source.SourcePackage.foo;
|
||||
import static source.TestKt.foo;
|
||||
|
||||
class Test {
|
||||
static void test() {
|
||||
|
||||
Reference in New Issue
Block a user