Normalize paths in AbstractLookupTrackerTest

Otherwise the tests are failing on Windows
This commit is contained in:
Alexey Tsvetkov
2017-08-11 20:51:06 +03:00
parent cd40968b72
commit 0226d15d29
@@ -184,7 +184,8 @@ abstract class AbstractLookupTrackerTest : TestWithWorkingDir() {
lookupsFromFile.isEmpty() -> "(no lookups)"
else -> ""
}
sb.indentln("${compiledFile.toRelativeString(workingDir)}$lookupStatus")
val relativePath = compiledFile.toRelativeString(workingDir).replace("\\", "/")
sb.indentln("$relativePath$lookupStatus")
}
sb.appendln("Exit code: $exitCode")