Normalize paths in AbstractLookupTrackerTest
Otherwise the tests are failing on Windows
Original commit: 0226d15d29
This commit is contained in:
+2
-1
@@ -184,7 +184,8 @@ abstract class AbstractLookupTrackerTest : TestWithWorkingDir() {
|
|||||||
lookupsFromFile.isEmpty() -> "(no lookups)"
|
lookupsFromFile.isEmpty() -> "(no lookups)"
|
||||||
else -> ""
|
else -> ""
|
||||||
}
|
}
|
||||||
sb.indentln("${compiledFile.toRelativeString(workingDir)}$lookupStatus")
|
val relativePath = compiledFile.toRelativeString(workingDir).replace("\\", "/")
|
||||||
|
sb.indentln("$relativePath$lookupStatus")
|
||||||
}
|
}
|
||||||
|
|
||||||
sb.appendln("Exit code: $exitCode")
|
sb.appendln("Exit code: $exitCode")
|
||||||
|
|||||||
Reference in New Issue
Block a user