[tests] Fix file path in testdata
This commit is contained in:
+1
-1
@@ -43,7 +43,7 @@ internal object TestModuleCompiler {
|
||||
JarOutputStream(librarySourcesPath.outputStream(), manifest).use { jarOutputStream ->
|
||||
for (testFile in module.files) {
|
||||
val text = testServices.sourceFileProvider.getContentOfSourceFile(testFile)
|
||||
addFileToJar(testFile.relativePath, text, jarOutputStream)
|
||||
addFileToJar(testFile.name, text, jarOutputStream)
|
||||
}
|
||||
}
|
||||
return librarySourcesPath
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ public abstract class BaseKotlin1 {
|
||||
}
|
||||
|
||||
// MODULE: mainModule(libModule)
|
||||
// FILE: JavaClassWithAbstractKotlinClass.java
|
||||
// FILE: mainModule/JavaClassWithAbstractKotlinClass.java
|
||||
package mainModule
|
||||
import libModule.*
|
||||
|
||||
|
||||
+1
-1
@@ -31,7 +31,7 @@ public abstract class BaseKotlin1 {
|
||||
}
|
||||
|
||||
// MODULE: mainModule(libModule)
|
||||
// FILE: JavaClassWithAbstractKotlinClass.java
|
||||
// FILE: mainModule/JavaClassWithAbstractKotlinClass.java
|
||||
package mainModule
|
||||
import libModule.*
|
||||
|
||||
|
||||
Reference in New Issue
Block a user