Replace parent with parentFile, relativePath with relativeTo

This commit is contained in:
Ilya Gorbunov
2015-10-01 20:21:54 +03:00
parent 3106458cc4
commit 25df3aac11
4 changed files with 4 additions and 4 deletions
@@ -37,7 +37,7 @@ public abstract class AbstractAndroidXml2KConversionTest : UsefulTestCase() {
val layoutPaths = getResPaths(path)
val supportV4 = testDirectory.name.startsWith("support")
val parser = CliSyntheticFileGeneratorForConversionTest(
jetCoreEnvironment.project, File(testDirectory.parent, "AndroidManifest.xml").path, layoutPaths, supportV4)
jetCoreEnvironment.project, File(testDirectory.parentFile, "AndroidManifest.xml").path, layoutPaths, supportV4)
val actual = parser.gen().toMap { it.name }