This commit is contained in:
parent
e573fa9abc
commit
41613c16e9
|
@ -57,12 +57,10 @@ abstract class AbstractGradleFuncTest extends Specification {
|
|||
}
|
||||
|
||||
String normalizedOutput(String input) {
|
||||
String normalizedPathPrefix = testProjectDir.root.canonicalPath.replace('\\', '/')
|
||||
return input.readLines()
|
||||
.collect { it.replaceAll("\\\\", "/") }
|
||||
.collect {
|
||||
it.replaceAll(
|
||||
testProjectDir.root.canonicalPath.replaceAll('\\\\', '/'), ".")
|
||||
}
|
||||
.collect { it.replace('\\', '/') }
|
||||
.collect {it.replace(normalizedPathPrefix , '.') }
|
||||
.join("\n")
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue